﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --black: #111111;
  --ink: #202020;
  --muted: #626262;
  --line: #e7e7e7;
  --soft: #f5f5f5;
  --yellow: #ffee00;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.1);
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

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

h1,
h2,
h3,
p,
a,
span,
small,
label,
button {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 212, 0, 0.75);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: var(--header-height);
  min-height: var(--header-height);
  padding: 0 64px;
  background: var(--yellow);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  min-width: 52px;
  min-height: 38px;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border-radius: 6px;
  font-weight: 900;
}

.brand-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.brand span:last-child {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
  justify-content: center;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
}

.main-nav a {
  padding: 7px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: var(--black);
}

.site-header .header-cta {
  color: var(--white);
  background: var(--black);
  min-height: 40px;
  padding: 11px 20px;
  font-size: 0.92rem;
}

.site-header .header-cta:hover {
  color: var(--black);
  background: var(--white);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow-wrap: normal;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.btn-primary {
  color: var(--black);
  background: var(--yellow);
}

.header-cta:hover,
.btn-primary:hover {
  color: var(--white);
  background: var(--black);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--black);
  background: transparent;
  border-color: var(--black);
}

.btn-secondary:hover,
.btn-ghost:hover {
  color: var(--white);
  background: var(--black);
}

.btn-ghost.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

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

.page-banner + .section {
  padding-top: clamp(42px, 5vw, 70px);
}

.section > .section-heading,
.section > .split-section,
.section > .service-grid,
.section > .feature-grid,
.section > .service-detail-grid,
.section > .steps,
.section > .catalog-grid,
.section > .contact-grid {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.alt {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.page-banner {
  position: relative;
  display: grid;
  min-height: clamp(180px, 18vw, 260px);
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: var(--black);
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: saturate(0.9) contrast(1.08);
}

.page-banner div {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 32px);
}

.page-banner .eyebrow {
  color: var(--white);
}

.page-banner h1 {
  margin: 0;
  max-width: min(1180px, 92vw);
  font-size: clamp(2.1rem, 5.2vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  text-transform: none;
}

.page-banner-copy {
  max-width: 680px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.home-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2172 / 724;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background-image: url("assets/images/banner.png");
  background-size: contain;
  background-position: center var(--header-height);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.home-hero img {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.2fr);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 7vw, 90px) clamp(18px, 4vw, 64px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 212, 0, 0.26), transparent 28%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero h1,
.page-hero h2,
.store-hero h2,
.cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2.25rem, 7.2vw, 7rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero p {
  max-width: 650px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button-row.centered {
  justify-content: center;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(70px, 8vw, 112px) clamp(18px, 4vw, 64px);
}

.split-section.compact {
  padding-inline: 0;
}

.split-section.no-pad {
  padding: 0;
}

.split-section h2,
.section-heading h2,
.page-hero h1,
.section-heading h1,
.store-hero h1 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(1.85rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero h1,
.section-heading h1,
.store-hero h1 {
  text-transform: none;
}

.image-panel {
  min-height: 420px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.22)), url("assets/images/Foto-loja-site-scaled.jpeg") center / cover;
  box-shadow: var(--shadow);
}

.team-image-panel {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.22)), url("assets/images/equipe.jpg") center / cover;
}

.intro-band {
  padding-top: clamp(48px, 6vw, 76px);
}

.intro-band .split-section {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
}

.intro-band .split-section h2 {
  font-size: clamp(1.45rem, 2.35vw, 2.45rem);
  max-width: 1040px;
}

.about-title {
  font-size: clamp(1.75rem, 2.95vw, 3.1rem);
}

.two-line-title {
  max-width: 100%;
}

.two-line-title > span {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.intro-actions {
  position: relative;
  overflow: hidden;
  color: var(--black);
  background: var(--yellow);
  padding-top: clamp(58px, 8vw, 118px);
  padding-bottom: clamp(52px, 7vw, 104px);
}

.intro-actions::before,
.intro-actions::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.intro-actions::before {
  inset: 28px auto auto clamp(18px, 7vw, 110px);
  width: clamp(90px, 16vw, 220px);
  height: clamp(90px, 16vw, 220px);
  border-top: 3px solid rgba(17, 17, 17, 0.9);
  border-left: 3px solid rgba(17, 17, 17, 0.9);
}

.intro-actions::after {
  content: "01";
  right: clamp(16px, 8vw, 130px);
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(7rem, 24vw, 23rem);
  font-weight: 950;
  line-height: 0.75;
}

.intro-actions .section-heading {
  position: relative;
  z-index: 1;
  max-width: min(1120px, 100%);
  margin-bottom: 0;
}

.intro-actions h1 {
  margin: 0 auto 20px;
  color: var(--black);
  font-size: clamp(2rem, 5.2vw, 5.4rem);
  line-height: 0.9;
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: initial;
}

.intro-actions .eyebrow {
  color: var(--black);
}

.intro-actions p:not(.eyebrow) {
  max-width: 740px;
  margin-inline: auto;
  color: rgba(17, 17, 17, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.intro-actions .btn-primary {
  background: var(--black);
  color: var(--white);
}

.intro-actions .btn-primary:hover,
.intro-actions .btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.stats-row span {
  display: grid;
  gap: 2px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.stats-row strong {
  color: var(--black);
  font-size: 1.65rem;
  line-height: 1;
}

.studio-image {
  background-position: right center;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.service-grid,
.feature-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

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

.home-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 255px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.86)), var(--service-image) center / cover;
  background-repeat: no-repeat;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.service-card small {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.service-card::after {
  content: "Saber Mais  \2197";
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--yellow);
  font-size: 0.86rem;
  font-weight: 500;
  text-transform: uppercase;
}

.service-card:nth-child(2n) {
  background-position: center;
}

.service-card:nth-child(1) { --service-image: url("imgs/Impressão.jpg"); }
.service-card:nth-child(2) { --service-image: url("imgs/My Book.jpg"); }
.service-card:nth-child(3) { --service-image: url("imgs/Sinalética.jpg"); }
.service-card:nth-child(4) { --service-image: url("imgs/Brindes e trofeus.jpg"); }
.service-card:nth-child(5) { --service-image: url("imgs/Têxteis.jpg"); }
.service-card:nth-child(6) { --service-image: url("imgs/Embalagem e rotulagem.jpg"); }
.service-card:nth-child(7) { --service-image: url("imgs/Decoração de montras e viaturas.jpg"); }
.service-card:nth-child(8) { --service-image: url("imgs/Corte e gravação a laser.jpg"); }
.service-card:nth-child(9) { --service-image: url("imgs/Vestuário Laboral.jpg"); }

.service-card span {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  font-weight: 500;
}

.service-card a {
  width: fit-content;
  margin-top: 14px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 7px;
  padding: 8px 12px;
  font-weight: 800;
}

.feature-card,
.steps article,
.catalog-card,
.contact-card,
.contact-form,
.testimonial {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.06);
}

.feature-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: rgba(255, 212, 0, 0.9);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-card h3,
.steps h3,
.catalog-card h3 {
  margin: 0 0 10px;
  color: var(--black);
}

.feature-card p,
.steps p,
.catalog-card p {
  margin: 0;
  color: var(--muted);
}

.feature-card .btn {
  margin-top: 18px;
}

.quote-block {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.quote-block p {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  line-height: 1.25;
  font-weight: 800;
}

.quote-block span {
  color: var(--muted);
  font-weight: 800;
}

.capability-grid .feature-card,
.value-grid .feature-card {
  text-align: center;
}

.icon-dot,
.value-number {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.84rem;
  font-weight: 900;
}

.capability-grid .icon-dot {
  width: 88px;
  height: 88px;
  background: transparent;
}

.icon-dot svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-dot img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.capability-grid .icon-dot img {
  width: 78px;
  height: 78px;
}

.value-number img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.value-grid .value-number {
  width: 88px;
  height: 88px;
  background: transparent;
}

.value-grid .value-number img {
  width: 78px;
  height: 78px;
}

.value-number {
  border-radius: 8px;
}

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

.service-detail {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.06);
}

.service-thumb {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.75), rgba(17, 17, 17, 0.68)),
    url("imgs/Impressão.jpg") center / cover;
}

.service-detail:nth-child(2n) .service-thumb {
  background-position: right center;
}

.service-detail h3,
.service-detail p,
.service-detail a {
  margin-left: 24px;
  margin-right: 24px;
}

.service-detail h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.service-detail p {
  color: var(--muted);
}

.service-detail a {
  width: fit-content;
  margin-top: auto;
  margin-bottom: 24px;
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
  font-weight: 900;
}

.services-showcase {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  gap: clamp(22px, 3.2vw, 38px);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.service-row.reverse .service-row-media {
  order: 2;
}

.service-row-media {
  min-height: clamp(190px, 22vw, 270px);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.18)),
    var(--service-row-image) center / cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.service-row:nth-child(1) { --service-row-image: url("imgs/Impressão.jpg"); }
.service-row:nth-child(2) { --service-row-image: url("imgs/Corte e gravação a laser.jpg"); }
.service-row:nth-child(3) { --service-row-image: url("imgs/Têxteis.jpg"); }
.service-row:nth-child(4) { --service-row-image: url("imgs/My Book.jpg"); }
.service-row:nth-child(5) { --service-row-image: url("imgs/Brindes e trofeus.jpg"); }
.service-row:nth-child(6) { --service-row-image: url("imgs/Decoração de montras e viaturas.jpg"); }
.service-row:nth-child(7) { --service-row-image: url("imgs/Vestuário Laboral.jpg"); }
.service-row:nth-child(8) { --service-row-image: url("imgs/Embalagem e rotulagem.jpg"); }

.service-row:nth-child(2n) .service-row-media {
  background-position: center;
}

.service-row:nth-child(3n) .service-row-media {
  background-position: center;
}

.service-row-copy span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.service-row-copy span::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 8px;
  background: var(--black);
}

.service-row-copy h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.service-row-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.mini-btn {
  display: inline-flex;
  margin-top: 10px;
  padding: 9px 13px;
  border-radius: 5px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-detail-page {
  display: grid;
  gap: 28px;
}

.service-detail-hero,
.service-story {
  max-width: var(--container);
  margin: 0 auto;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.service-detail-photo {
  min-height: clamp(260px, 32vw, 460px);
  border-radius: 8px;
  background: var(--soft) center / cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.service-detail-hero h2 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(2rem, 3.4vw, 4.1rem);
  line-height: 1.04;
  text-transform: uppercase;
  text-wrap: balance;
}

.service-detail-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.service-story {
  display: grid;
  gap: clamp(24px, 4vw, 54px);
}

.service-story-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.service-story-row.reverse .service-story-image {
  order: 2;
}

.service-story-image {
  min-height: clamp(220px, 26vw, 360px);
  border-radius: 8px;
  background: var(--soft) center / cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.service-story-row span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-story-row span::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 8px;
  background: var(--black);
}

.service-story-row h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: clamp(1.5rem, 2.8vw, 3rem);
  line-height: 1;
}

.service-story-row p {
  max-width: 720px;
  color: var(--muted);
}

.services-section {
  padding-top: clamp(50px, 6vw, 76px);
}

.services-section .section-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.services-section .section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.page-hero {
  max-width: 950px;
  margin: 0 auto 36px;
  text-align: center;
}

.page-hero p:last-child {
  color: var(--muted);
}

.testimonial-carousel {
  max-width: 980px;
  margin: 56px auto 0;
  text-align: center;
}

.testimonial-carousel .section-heading {
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section-heading.compact h2 {
  margin-bottom: 0;
}

.section-heading.compact p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 1.2rem;
}

.testimonial-carousel .testimonial {
  position: relative;
  max-width: 860px;
  margin: 30px auto 0;
  padding: clamp(28px, 5vw, 56px);
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  transition: opacity 180ms ease, transform 180ms ease;
}

.testimonial-carousel .testimonial::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 54px;
  height: 4px;
  background: var(--yellow);
  transform: translateX(-50%);
}

.testimonial-carousel.is-changing .testimonial {
  animation: testimonialIn 360ms ease both;
}

.testimonial p {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.9rem);
  line-height: 1.4;
  font-weight: 400;
}

.testimonial cite {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
}

.testimonial cite strong,
.testimonial cite span {
  display: block;
}

.testimonial cite span {
  font-weight: 400;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e3e3e3;
  cursor: pointer;
}

.testimonial-dots button.active {
  background: var(--yellow);
}

@keyframes testimonialIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 1.8rem;
  font-weight: 900;
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--container);
  margin: 0 auto;
  gap: clamp(20px, 4vw, 56px);
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.step-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
}

.step-icon svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(28px);
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-step h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-step p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.filters button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filters button.active,
.filters button:hover {
  border-color: var(--yellow);
  background: var(--yellow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.portfolio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.82)),
    var(--portfolio-image) center / cover;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.portfolio-card:nth-child(5n + 1) {
  grid-column: span 2;
  min-height: 310px;
}

.portfolio-card::after {
  display: none;
}

.portfolio-card span,
.portfolio-card h3,
.portfolio-card p {
  position: relative;
  z-index: 1;
}

.portfolio-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.portfolio-card p {
  color: rgba(255, 255, 255, 0.76);
}

.project-gallery {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.project-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.catalog-card {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-cover {
  position: relative;
  display: grid;
  min-height: auto;
  aspect-ratio: 1 / 1;
  align-content: end;
  gap: 8px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.58)),
    var(--catalog-image) center / cover;
  border-radius: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.05;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.catalog-cover:hover {
  filter: contrast(1.04);
  transform: translateY(-2px);
}

.catalog-cover small {
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
}

.catalog-body {
  padding: 0 4px;
}

.catalog-category {
  margin: 0 0 6px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.store-hero img {
  border-radius: 8px;
}

.cta {
  max-width: calc(100% - clamp(36px, 8vw, 128px));
  margin: clamp(40px, 6vw, 80px) auto;
  color: var(--white);
  text-align: center;
  background: var(--black);
  border-radius: 8px;
}

.cta p {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.74);
}

.action-strip,
.briefing-panel,
.catalog-request {
  max-width: var(--container);
  margin: 0 auto;
  border-radius: 8px;
}

.action-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--black);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.action-strip h2,
.briefing-panel h2,
.catalog-request h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.action-strip .eyebrow,
.catalog-request .eyebrow {
  color: var(--black);
}

.briefing-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.briefing-panel > span {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.briefing-panel p,
.catalog-request p {
  color: var(--muted);
}

.briefing-panel-centered {
  max-width: min(1180px, calc(100vw - 48px));
  justify-items: center;
  grid-template-columns: 1fr;
  text-align: center;
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.briefing-panel-centered > span {
  display: none;
}

.briefing-panel-centered h2 {
  color: var(--white);
  font-size: clamp(1.55rem, 3.4vw, 3.5rem);
  line-height: 1.04;
}

.briefing-panel-centered p {
  max-width: 620px;
  margin: 14px auto 24px;
  color: rgba(255, 255, 255, 0.68);
}

.catalog-request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.18), rgba(255, 255, 255, 0.94)),
    var(--white);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 26px;
}

.contact-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.contact-heading h2 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}

.contact-heading p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
}

.contact-intro {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.contact-intro h2 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-intro p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
}

.contact-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--container);
  margin: 0 auto 28px;
  gap: 16px;
}

.contact-mini {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.06);
}

.contact-mini span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
}

.contact-mini svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-mini strong {
  font-size: 1.1rem;
}

.contact-mini small {
  color: var(--muted);
}

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

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--white);
}

.contact-card {
  align-self: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-form h2,
.contact-card h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--black);
  background: var(--white);
}

.contact-form input:invalid.is-touched,
.contact-form textarea:invalid.is-touched {
  border-color: #b00020;
}

.form-status {
  display: none;
  align-items: center;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto 22px;
  padding: 14px 18px;
  color: var(--black);
  background: var(--yellow);
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
}

.form-status.is-success,
.form-status.is-error {
  display: flex;
}

.form-status span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--yellow);
  background: var(--black);
  border-radius: 50%;
  font-weight: 900;
}

.form-status strong {
  font-weight: 700;
}

.site-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 14px;
  align-items: center;
  width: min(430px, calc(100vw - 32px));
  padding: 16px;
  color: var(--black);
  background: var(--yellow);
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.2);
  animation: toastIn 0.25s ease both;
}

.site-toast span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--yellow);
  background: var(--black);
  border-radius: 50%;
  font-weight: 800;
}

.site-toast strong,
.site-toast p {
  margin: 0;
}

.site-toast strong {
  display: block;
  margin-bottom: 2px;
}

.site-toast p {
  font-size: 0.92rem;
}

.site-toast button {
  width: 30px;
  height: 30px;
  color: var(--black);
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.contact-item span {
  display: inline-grid;
  width: 34px;
  min-height: 34px;
  place-items: center;
  color: var(--yellow);
  background: transparent;
}

.contact-item svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item p {
  margin: 0;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-card {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.map-card .btn {
  margin: 18px;
}

.site-footer {
  position: relative;
  padding: 58px clamp(18px, 4vw, 64px) 24px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.84)),
    url("assets/images/banner footer.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
  gap: 34px;
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer h3 {
  margin-top: 0;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

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

.light-brand {
  color: var(--white);
}

.footer-logo {
  display: block;
  width: max-content;
  margin: 0 auto;
}

.footer-logo img {
  display: block;
  width: min(190px, 72vw);
  height: auto;
}

.footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-badges img {
  width: 74px;
  height: auto;
  object-fit: contain;
}

.footer-doc {
  display: block;
  width: 74px;
  margin: 0;
}

.footer-doc img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-funding {
  display: block;
  width: min(330px, 100%);
  height: auto;
  margin-top: 28px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.socials a {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cofunded {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.newsletter {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.newsletter button {
  flex: 0 0 auto;
  min-width: 124px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--yellow);
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}

.copyright {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-page article {
  max-width: 920px;
  margin: 0 auto;
  color: var(--muted);
}

.legal-page h1 {
  margin: 0 0 clamp(42px, 5vw, 70px);
  color: var(--black);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.legal-page h2 {
  margin: 34px 0 12px;
  color: var(--black);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.legal-page p {
  margin: 0 0 14px;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  max-width: 520px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-consent p {
  margin: 0;
  font-size: 0.92rem;
}

.cookie-consent div {
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

.cookie-consent a {
  font-weight: 500;
  text-decoration: underline;
}

.cookie-consent button {
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 7px;
  color: var(--black);
  background: var(--yellow);
  cursor: pointer;
  font-weight: 500;
}

.project-modal {
  max-width: 620px;
  width: calc(100% - 32px);
  border: 0;
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.project-modal::backdrop {
  background: rgba(17, 17, 17, 0.7);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

.modal-art {
  min-height: 220px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--black));
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1), transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.from-left,
.from-right {
  transition-duration: 760ms;
}

.from-left.reveal {
  transform: translateX(-46px);
}

.from-right.reveal {
  transform: translateX(46px);
}

.from-left.reveal.is-visible,
.from-right.reveal.is-visible {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .header-cta {
    display: none;
  }

  .site-header {
    padding-inline: 32px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .hero,
  .store-hero,
  .split-section,
  .intro-band .split-section,
  .contact-grid,
  .briefing-panel,
  .catalog-request {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .intro-band .image-panel {
    min-height: 300px;
  }

  .feature-grid,
  .service-grid,
  .service-detail-grid,
  .contact-quick,
  .steps,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .service-detail-hero,
  .service-story-row,
  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-story-row.reverse .service-story-image,
  .service-row.reverse .service-row-media {
    order: 0;
  }

  .service-detail-photo,
  .service-story-image,
  .service-row-media {
    min-height: 260px;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }

  .menu-toggle span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: calc(var(--header-height) + 10px) 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 12px;
    background: var(--yellow);
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 100;
    max-height: calc(100vh - var(--header-height) - 40px);
    overflow-y: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-bottom: none;
    border-radius: 6px;
  }

  .main-nav a:hover,
  .main-nav a.active {
    border-color: transparent;
    background: rgba(17, 17, 17, 0.06);
  }

  .hero h1,
  .page-hero h2,
  .store-hero h2,
  .cta h2 {
    font-size: clamp(2rem, 10vw, 4.2rem);
  }

  .intro-actions h1,
  .page-banner h1 {
    font-size: clamp(1.75rem, 6.4vw, 3.8rem);
  }

  .page-banner {
    min-height: 170px;
  }

  .intro-title,
  .about-title {
    font-size: clamp(1.55rem, 5.2vw, 2.65rem);
  }

  .briefing-title {
    font-size: clamp(1.35rem, 4.8vw, 2.35rem);
  }

  .intro-actions::before {
    width: 86px;
    height: 86px;
    border-width: 2px;
  }

  .intro-actions::after {
    font-size: clamp(6rem, 30vw, 13rem);
  }

  .portfolio-card:nth-child(5n + 1) {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    --header-height: 76px;
    height: var(--header-height);
    min-height: var(--header-height);
    padding-inline: 16px;
  }

  .brand-icon {
    width: 48px;
    height: 48px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero,
  .section,
  .split-section {
    padding-inline: 16px;
  }

  .home-hero img {
    width: 1px;
    height: 1px;
  }

  .home-hero {
    aspect-ratio: 16 / 7;
    height: auto;
    min-height: 220px;
    background-size: cover;
    background-attachment: scroll;
    background-position: center top;
  }

  .intro-actions {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .intro-actions::before {
    inset: 16px auto auto 16px;
    width: 54px;
    height: 54px;
  }

  .intro-actions h1 {
    font-size: clamp(1.65rem, 8vw, 2.8rem);
    line-height: 0.94;
  }

  .two-line-title > span {
    white-space: normal;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .page-banner + .section {
    padding-top: 38px;
  }

  .split-section h2,
  .section-heading h1,
  .section-heading h2,
  .contact-intro h2 {
    font-size: clamp(1.55rem, 7vw, 2.35rem);
    line-height: 1.08;
  }

  .intro-title,
  .about-title {
    font-size: clamp(1.2rem, 5.45vw, 2.05rem);
  }

  .briefing-title {
    font-size: clamp(1.05rem, 4.75vw, 1.85rem);
  }

  .section-heading {
    text-align: left;
  }

  .intro-actions .section-heading {
    text-align: center;
  }

  .button-row.centered {
    justify-content: flex-start;
  }

  .button-row,
  .catalog-actions,
  .newsletter {
    flex-direction: column;
  }

  .newsletter button {
    width: 100%;
  }

  .site-footer {
    background-attachment: scroll;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent div {
    justify-content: space-between;
  }

  .service-grid,
  .feature-grid,
  .feature-grid.three,
  .catalog-grid,
  .steps,
  .process-steps,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .service-card {
    min-height: 176px;
    padding: 14px;
  }

  .service-card span,
  .portfolio-card h3,
  .catalog-card h3 {
    font-size: 1rem;
    line-height: 1.08;
  }

  .service-card small,
  .catalog-card p,
  .portfolio-card p,
  .feature-card p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .catalog-cover {
    min-height: 190px;
    padding: 14px;
    font-size: clamp(1.7rem, 12vw, 2.7rem);
  }

  .feature-card,
  .steps article,
  .contact-card,
  .contact-form {
    padding: 18px;
  }

  .testimonial-carousel .testimonial {
    padding: 30px 20px 22px;
  }

  .catalog-card {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .catalog-cover {
    min-height: auto;
    padding: 12px;
    font-size: clamp(0.95rem, 4vw, 1.2rem);
  }

  .step-number {
    right: calc(50% - 58px);
  }

  .image-panel {
    min-height: 300px;
  }

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

  .stats-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .stats-row span {
    padding: 10px;
  }

  .stats-row strong {
    font-size: 1.35rem;
  }

  .intro-band .image-panel {
    min-height: 220px;
  }
}

@media (max-width: 380px) {
  .service-grid,
  .feature-grid,
  .feature-grid.three,
  .steps,
  .process-steps,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .project-gallery-wide {
    grid-column: span 1;
  }

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