:root {
  --black: #0a0a0a;
  --anthracite: #121212;
  --anthracite-2: #1a1a1a;
  --red: #e11d48;
  --red-dark: #be123c;
  --white: #ffffff;
  --paper: #ffffff;
  --paper-2: #f9fafb;
  --ink: #111827;
  --muted: #4b5563;
  --muted-2: #6b7280;
  --muted-dark: #94a3b8;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --glass: rgba(18, 18, 18, 0.72);
  --glass-2: rgba(255, 255, 255, 0.04);
  --shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  --glow: 0 12px 40px rgba(225, 29, 72, 0.28);
  --font-display: "IBM Plex Serif", "Noto Serif", Georgia, serif;
  --font-body: "IBM Plex Sans", "Noto Sans", system-ui, sans-serif;
  --header: 88px;
  --offset: var(--header);
  --radius: 2px;
  --radius-sm: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--offset) + 12px);
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 1000;
  background: var(--red);
  color: var(--white);
  padding: 8px 14px;
}

.skip-link:focus {
  top: 8px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

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

.eyebrow a:hover {
  text-decoration: underline;
}

.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.muted {
  color: var(--muted);
}

.section {
  padding: 88px 0;
  position: relative;
  background: var(--paper);
}

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

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--header);
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 66px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.footer-brand {
  margin-bottom: 36px;
}

.footer-logo img {
  height: 96px;
  max-width: 280px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  white-space: nowrap;
  padding: 10px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.header-phone {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--red);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.82rem;
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), background 0.25s, box-shadow 0.35s, border-color 0.25s;
}

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

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

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-ghost {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--red);
}

.hero .btn-ghost,
.cta-banner .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.hero .btn-ghost:hover,
.cta-banner .btn-ghost:hover {
  border-color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

body.nav-open .menu-toggle span {
  background: transparent;
}

body.nav-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  min-height: calc(100svh - var(--header));
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.banner-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img,
.banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 22s var(--ease) infinite alternate;
}

.hero-media img {
  object-position: 28% center;
}

.hero-media::after,
.banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.55) 42%, rgba(10, 10, 10, 0.92) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(225, 29, 72, 0.18), transparent 42%);
}

@keyframes kenburns {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.18) translate3d(-1.5%, -1%, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 72px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  max-width: 14ch;
  margin: 18px 0 20px;
}

.hero .lede {
  max-width: 54ch;
  color: var(--muted-dark);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

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

.trust {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}

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

.trust-item {
  padding: 28px 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 0;
  box-shadow: var(--shadow);
  min-height: 180px;
  transition: border-color 0.25s;
}

.trust-item:hover {
  border-color: var(--red);
}

.trust-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.7;
  margin-bottom: 16px;
}

.trust-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.trust-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

@media (min-width: 1101px) {
  .categories-grid > .cat-card:nth-child(7):last-child {
    grid-column: 2;
  }
}

@media (max-width: 1100px) and (min-width: 701px) {
  .categories-grid > .cat-card:nth-child(7):last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 9px);
    justify-self: center;
  }
}

.seo-areas {
  margin-top: 56px;
}

.seo-areas h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 10px 0 16px;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.area-chips li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.88rem;
  font-weight: 500;
}

.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.25s;
}

.cat-card:hover {
  border-color: var(--red);
}

.cat-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  background: #f3f4f6;
  overflow: hidden;
}

.cat-card img,
.cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.cat-card.crop-top img {
  object-position: center 18%;
}

.cat-card.crop-service img {
  object-position: 18% 38%;
}

.cat-card.crop-mark img {
  object-position: 72% 28%;
}

.cat-card.crop-cover img {
  object-position: center 62%;
}

.cat-card:hover img {
  transform: scale(1.03);
}

.cat-body {
  padding: 18px 20px 22px;
}

.cat-body strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.cat-body span {
  color: var(--muted);
  font-size: 0.88rem;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.split-photo {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #f3f4f6;
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 12% 88%;
  position: absolute;
  inset: 0;
}

.split-photo::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  padding: 10px 14px;
}

.photo-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
}

.split-photo.split-logo {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  box-shadow: none;
}

.split-photo.split-logo img {
  position: static;
  width: min(86%, 460px);
  height: auto;
  object-fit: contain;
}

.split-photo.split-logo::after {
  content: none;
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  margin: 12px 0 18px;
}

.split-copy p + p {
  margin-top: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  font-size: 0.82rem;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

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

.work-item {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: zoom-in;
  transition: border-color 0.25s;
}

.work-item:hover {
  border-color: var(--red);
}

.work-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
  background: #f3f4f6;
  transition: transform 0.5s var(--ease);
}

.work-item.crop-up img {
  object-position: center 12%;
}

.work-item.crop-mark img {
  object-position: 70% 22%;
}

.work-item.crop-cover img {
  object-position: center 65%;
}

.service-block {
  scroll-margin-top: calc(var(--offset) + 16px);
}

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

.work-item figcaption {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 16px 16px;
}

.work-item.is-hidden {
  display: none;
}

.cta-section {
  padding: 12px 0 80px;
  background: var(--paper-2);
}

.cta-banner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
  max-width: 680px;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin: 12px 0 16px;
  line-height: 1.15;
}

.cta-banner .muted {
  color: #e2e8f0;
  max-width: 48ch;
  margin-bottom: 28px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 0 110px;
  background: #0c0c0c;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.9fr;
  gap: 32px 56px;
  align-items: start;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-links {
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 10px;
}

.footer-col li a {
  color: #d1d5db;
  font-size: 0.92rem;
}

.footer-meta {
  display: grid;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.footer-meta a {
  color: #fff;
  font-weight: 600;
}

.site-footer h3 {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 16px;
}

.site-footer .muted {
  color: #94a3b8;
}

.site-footer a:hover {
  color: var(--red);
}

.footer-chat {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #161616;
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}

.chat-btn:hover {
  color: #fff;
  border-color: var(--red);
  background: #1f1f1f;
}

.chat-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

.chat-btn.imessage { color: #34c759; }
.chat-btn.viber { color: #b8a9ff; }
.chat-btn.whatsapp { color: #25d366; }

.chat-btn.imessage:hover,
.chat-btn.viber:hover,
.chat-btn.whatsapp:hover {
  color: #fff;
}

.legal {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.legal button {
  color: #94a3b8;
  font-size: 0.8rem;
}

.legal button:hover {
  color: #fff;
}

.legal a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.legal a:hover {
  color: #fda4af;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-cta a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
}

.mobile-cta .call {
  background: var(--red);
}

.mobile-cta .wa {
  background: #128c7e;
}

.modal {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  width: min(520px, calc(100% - 24px));
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.18);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.modal-inner {
  padding: 28px;
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 8px 0 8px;
}

.modal-close {
  float: right;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--ink);
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  position: relative;
}

.form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form [type="submit"]:disabled {
  opacity: 0.55;
  pointer-events: none;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
}

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  background: #14532d;
  color: #ecfdf5;
  padding: 14px 18px;
  border-radius: var(--radius);
  transform: translateY(120%);
  opacity: 0;
  transition: 0.35s var(--ease);
}

.toast.is-show {
  transform: none;
  opacity: 1;
}

.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  max-width: 16ch;
  margin: 12px 0 16px;
}

.page-hero.wide h1 {
  max-width: min(22ch, 100%);
}

.legal-doc {
  max-width: 76ch;
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 36px 0 12px;
}

.legal-doc p,
.legal-doc li {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-doc ul,
.legal-doc ol {
  padding-left: 1.2em;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
  list-style: disc;
}

.legal-doc a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.45;
}

.form .consent input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}

.form .consent a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: min(440px, calc(100% - 24px));
  max-height: min(72vh, 540px);
  display: flex;
  flex-direction: column;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #111;
  color: #f8fafc;
  padding: 22px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  font-family: var(--font-body);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #f1f5f9;
  margin-bottom: 16px;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-actions button {
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.84rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.cookie-accept {
  background: var(--red);
  color: #fff;
}

.cookie-settings-btn,
.cookie-reject,
.cookie-save {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.cookie-panel {
  display: none;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.is-settings .cookie-panel {
  display: grid;
  gap: 12px;
}

.cookie-panel label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: #d1d5db;
}

.cookie-panel input {
  margin-top: 3px;
  accent-color: var(--red);
}

.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.service-block:nth-child(even) {
  direction: rtl;
}

.service-block:nth-child(even) > * {
  direction: ltr;
}

.service-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 10px 0 16px;
}

.service-copy ul {
  margin-top: 16px;
}

.service-copy li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  margin-bottom: 8px;
}

.service-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 1px;
  background: var(--red);
}

.service-more {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 22px;
}

.service-more a {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
}

.service-more a:hover {
  color: var(--red);
}

.service-photos {
  display: grid;
  gap: 12px;
}

.service-photos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid var(--line);
  background: #f3f4f6;
  box-shadow: var(--shadow);
}

.service-photos.duo {
  grid-template-columns: 1fr 1fr;
}

.service-photos .crop-up {
  object-position: center 16%;
}

.service-photos .crop-hero {
  object-position: 30% center;
}

.service-photos .crop-mark {
  object-position: 75% 25%;
}

.service-photos .crop-cover {
  object-position: center 65%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-card,
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: 28px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-lead {
  max-width: 72ch;
}

.detail-photos {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 12px;
  margin-top: 36px;
}

.detail-photos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.detail-photos img:first-child {
  height: 100%;
  min-height: 360px;
  grid-row: span 2;
}

.detail-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.process li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.process li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.process h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

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

.watch-list li {
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  list-style: none;
}

.legal-doc ol.process,
.legal-doc ul.watch-list {
  list-style: none;
  padding-left: 0;
  gap: 0;
}

.legal-doc ol.process {
  gap: 0;
}

.legal-doc ul.watch-list {
  gap: 12px;
}

.error-page {
  min-height: calc(100vh - var(--header) - 80px);
  display: grid;
  place-items: center;
  padding: 72px 20px 96px;
  text-align: center;
  background: var(--paper);
}

.error-page .error-code {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 16vw, 10rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--red);
  margin: 0 0 12px;
}

.error-page h1 {
  max-width: 16ch;
  margin-inline: auto;
}

.error-page .muted {
  max-width: 46ch;
  margin: 16px auto 0;
}

.error-page .service-actions {
  justify-content: center;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 28px;
}

.error-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.error-links a:hover {
  color: var(--red);
  border-color: var(--red);
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.faq-list p {
  margin-top: 10px;
  color: var(--muted);
}

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

.service-pager a {
  display: block;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.service-pager a:hover {
  border-color: var(--red);
}

.service-pager strong {
  display: block;
  margin-bottom: 4px;
}

.service-pager span {
  color: var(--muted);
  font-size: 0.88rem;
}

.portrait {
  min-height: 420px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: #f3f4f6;
  box-shadow: var(--shadow);
}

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

.portrait.one img {
  object-position: 12% 90%;
}

.portrait.two img {
  object-position: 50% 78%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.map-wrap {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  place-items: center;
  padding: 24px;
}

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

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--white);
  font-size: 1.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .banner-media img,
  .cat-card img,
  .work-item img {
    animation: none;
    transform: none;
    transition: none;
  }

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

@media (max-width: 1200px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .header-inner {
    gap: 16px;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: min(var(--max), calc(100% - 32px));
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--offset);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 24px 120px;
    gap: 8px;
    border-top: 1px solid var(--line);
    overflow-y: auto;
    z-index: 80;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 1.25rem;
    color: var(--ink);
    padding: 14px 0;
    font-family: var(--font-body);
    font-weight: 500;
    white-space: normal;
  }

  .nav-links a::after {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 56px 0 36px;
  }

  .trust-grid,
  .categories-grid,
  .work-grid,
  .footer-grid,
  .about-grid,
  .contact-grid,
  .service-photos.duo,
  .detail-photos,
  .detail-cards,
  .service-pager {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-block,
  .service-block:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
    padding: 48px 0;
  }

  .split-photo,
  .portrait {
    min-height: 360px;
  }

  .split-photo.split-logo {
    min-height: 280px;
  }

  .cta-inner {
    padding: 44px 32px;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 120px;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 76px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 76px;
    width: auto;
    max-height: min(58vh, 420px);
  }
}

@media (max-width: 700px) {
  .trust-grid,
  .categories-grid,
  .work-grid,
  .split,
  .footer-grid,
  .about-grid,
  .contact-grid,
  .service-photos.duo,
  .detail-photos,
  .detail-cards,
  .service-pager {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .header-inner,
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .detail-photos img:first-child {
    min-height: 240px;
    grid-row: auto;
  }

  .work-grid.featured {
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 82%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    grid-template-columns: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-media img,
  .banner-media img {
    animation: none;
    transform: scale(1.04);
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-accept {
    grid-column: 1 / -1;
  }

  .cookie-save {
    width: 100%;
  }

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

  .lightbox {
    padding: 12px;
  }

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

@media (max-width: 640px) {
  :root {
    --header: 72px;
  }

  .logo img {
    height: 48px;
    max-width: 158px;
    padding: 0;
  }

  .cta-banner {
    width: min(var(--max), calc(100% - 20px));
    min-height: 340px;
  }

  .cta-inner {
    padding: 32px 20px;
  }

  .hero {
    min-height: calc(88svh - var(--header));
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    max-width: 18ch;
  }

  .hero .lede {
    font-size: 0.98rem;
  }

  .hero-actions,
  .cta-actions,
  .service-actions {
    display: flex;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .service-actions .btn,
  .form .btn {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
  }

  .section {
    padding: 48px 0;
  }

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

  .trust-item,
  .about-card,
  .info-card {
    padding: 22px 18px;
    min-height: 0;
  }

  .split-photo,
  .portrait {
    min-height: 280px;
  }

  .modal {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
    overflow: auto;
  }

  .modal-inner {
    padding: 22px 18px;
  }

  .map-wrap iframe {
    height: 220px;
  }

  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 68px;
    width: auto;
    max-height: min(62vh, 460px);
    padding: 18px 16px calc(14px + env(safe-area-inset-bottom));
    border-left: 0;
    border-right: 0;
  }

  .mobile-cta {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
  }
}
