:root {
  --red: #e51f35;
  --red-dark: #b80f23;
  --ink: #111315;
  --ink-soft: #2d3034;
  --paper: #f4f5f6;
  --white: #ffffff;
  --muted: #666c73;
  --line: #dfe2e5;
  --blue: #2453d4;
  --yellow: #f3c842;
  --whatsapp: #1fbd5a;
  --shadow: 0 18px 45px rgba(15, 18, 22, 0.12);
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  border: 2px solid var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.utility-bar {
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.utility-bar .wrap {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(15, 18, 22, 0.05);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 260px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.brand-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 9px;
  border-bottom: 2px solid transparent;
  color: #404348;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 0;
  cursor: pointer;
}

.nav-toggle::before {
  content: "☰";
  font-size: 23px;
  line-height: 1;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 2px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 24px rgba(229, 31, 53, 0.22);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.btn.secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.btn.secondary:hover {
  background: var(--ink);
  color: var(--white);
}

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

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

.btn.dark {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: none;
}

.btn.dark:hover {
  border-color: #2c3034;
  background: #2c3034;
}

.btn.small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 14px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: #16181b;
}

.home-hero {
  min-height: min(680px, calc(100svh - 112px));
  display: flex;
  align-items: center;
}

.home-hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.home-hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 12, 14, 0.9) 0%, rgba(10, 12, 14, 0.72) 42%, rgba(10, 12, 14, 0.08) 76%);
}

.hero-content {
  max-width: 720px;
  padding-block: 58px;
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
  background: var(--red);
  color: var(--white);
}

.tag {
  background: #fee7ea;
  color: #a90f20;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(46px, 4.25rem, 68px);
  font-weight: 950;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 2.7rem, 47px);
  font-weight: 920;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 900;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.5;
}

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

.mt-24 {
  margin-top: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.justify-center {
  justify-content: center;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.error-content {
  max-width: 720px;
  text-align: center;
}

.hero-proof {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 750;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-strip .wrap {
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 16px;
}

.trust-item span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

main > section:not(.hero):not(.trust-strip) {
  padding-block: 92px;
}

.section-head {
  max-width: 800px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.service-choice {
  background: var(--paper);
}

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

.choice-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.choice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.choice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 10, 12, 0.92) 0%, rgba(8, 10, 12, 0.08) 68%);
}

.choice-card > div {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.choice-card h3 {
  margin: 9px 0 6px;
  font-size: 27px;
}

.choice-card p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.choice-card:hover img {
  transform: scale(1.025);
}

.choice-card .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
}

.choice-card .text-link::after {
  content: "→";
  font-size: 18px;
}

.quote-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 72px;
  align-items: center;
}

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

.quote-copy .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.quote-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--yellow);
  font-weight: 900;
}

.quote-form {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.quote-form h3 {
  margin-bottom: 6px;
}

.quote-form > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #cdd1d5;
  border-radius: 5px;
  background: #fbfbfc;
  color: var(--ink);
}

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

.quote-form .btn {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

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

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  gap: 68px;
  align-items: center;
}

.process-steps {
  counter-reset: process;
  display: grid;
}

.process-item {
  position: relative;
  counter-increment: process;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}

.process-item::before {
  content: counter(process, decimal-leading-zero);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.process-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 19px;
}

.process-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.process-image {
  min-height: 610px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.portfolio-section {
  background: #e9ebed;
}

.portfolio-section .section-head p {
  color: #555a60;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, 310px);
  gap: 14px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: var(--ink);
}

.portfolio-item:first-child {
  grid-row: 1 / 3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  border-radius: 4px;
  background: rgba(15, 17, 19, 0.88);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.audience-band {
  background: var(--red);
  color: var(--white);
}

.audience-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.audience-band .section-head p {
  color: var(--white);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.audience-list a {
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-weight: 850;
}

.audience-list a:hover {
  background: rgba(0, 0, 0, 0.12);
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

summary {
  position: relative;
  padding: 18px 48px 18px 18px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 25px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.location-section {
  padding-block: 0 !important;
  background: var(--ink);
  color: var(--white);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 390px;
}

.location-copy {
  display: grid;
  align-content: center;
  padding: 58px max(38px, calc((100vw - var(--wrap)) / 2));
  padding-right: 58px;
}

.location-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.location-visual {
  position: relative;
  overflow: hidden;
}

.location-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-visual::after {
  content: "Ramos • Rio de Janeiro";
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 10px 13px;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.page-hero {
  min-height: 500px;
  display: flex;
  align-items: end;
}

.page-hero .hero-content {
  max-width: 780px;
  padding-block: 78px 66px;
}

.page-title {
  font-size: clamp(42px, 4.4rem, 66px);
}

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

.hero-visual-tags,
.service-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-visual-tags span,
.service-kicker span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background: rgba(10, 12, 14, 0.5);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
}

.soft,
.visual-menu {
  background: var(--paper);
}

.showcase-band {
  background: #e9ebed;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 18, 22, 0.06);
}

.card:not(.media-card) {
  padding: 25px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card .tag {
  margin-bottom: 13px;
}

.media-card img,
.model-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.price-card {
  border-top: 5px solid var(--red);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  gap: 58px;
  align-items: center;
}

.split > img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 10px;
}

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.step::before {
  content: counter(steps);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

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

.filter-btn {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

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

.model-card {
  position: relative;
}

.model-card .btn {
  width: 100%;
  margin-top: 14px;
}

.decision-table,
.service-spec {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: var(--white);
}

.decision-row,
.service-spec > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) 1fr;
  gap: 18px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.decision-row:last-child,
.service-spec > div:last-child {
  border-bottom: 0;
}

.decision-row span,
.service-spec dd {
  color: var(--muted);
}

.service-spec dl,
.service-spec dt,
.service-spec dd {
  margin: 0;
}

.service-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.visual-card-grid,
.library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.visual-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 7px;
  color: var(--white);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 12, 14, 0.92), rgba(10, 12, 14, 0.05) 72%);
}

.visual-card > div {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.library-grid .library-feature {
  grid-row: span 2;
}

.library-note {
  display: grid;
  align-content: end;
  min-height: 320px;
  padding: 28px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
}

.mock-shirt {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #e8eaec;
}

.mock-shirt::before {
  content: "";
  width: 68%;
  height: 72%;
  display: block;
  background: var(--shirt-color);
  clip-path: polygon(20% 0, 36% 0, 42% 9%, 58% 9%, 64% 0, 80% 0, 100% 17%, 86% 35%, 78% 29%, 78% 100%, 22% 100%, 22% 29%, 14% 35%, 0 17%);
}

.mock-print {
  position: absolute;
  color: var(--white);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.final-cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.final-cta .wrap {
  max-width: 820px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.final-cta .btn {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.site-footer {
  padding-block: 54px 30px;
  background: #0b0d0f;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 36px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid strong {
  font-size: 16px;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    grid-column: 3;
    justify-self: end;
  }

  .nav > .btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 14px 20px 20px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(15, 18, 22, 0.14);
  }

  .nav-links.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 13px 10px;
  }

  .quote-layout,
  .process-layout,
  .faq-layout,
  .audience-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

  .portfolio-item:first-child {
    grid-row: span 2;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .wrap {
    width: min(calc(100% - 30px), var(--wrap));
  }

  .utility-bar .wrap {
    min-height: 34px;
    justify-content: center;
    text-align: center;
  }

  .utility-bar p:last-child {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-sub {
    max-width: 180px;
    font-size: 10px;
  }

  .nav-links.is-open {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 680px;
    align-items: end;
  }

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

  .home-hero::before {
    background: linear-gradient(0deg, rgba(8, 10, 12, 0.96) 0%, rgba(8, 10, 12, 0.78) 54%, rgba(8, 10, 12, 0.16) 100%);
  }

  .hero-content {
    padding-block: 44px 38px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 11px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 21px;
  }

  .lead {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .secondary {
    display: none;
  }

  .hero-proof {
    margin-top: 18px;
    gap: 6px 14px;
    font-size: 12px;
  }

  .trust-strip .wrap {
    min-height: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  main > section:not(.hero):not(.trust-strip) {
    padding-block: 58px;
  }

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

  .section-head p {
    font-size: 16px;
  }

  .choice-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .visual-card-grid,
  .library-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 390px;
  }

  .quote-layout {
    gap: 34px;
  }

  .quote-form {
    padding: 22px 18px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .process-image {
    min-height: 430px;
  }

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

  .portfolio-item:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .location-layout {
    grid-template-columns: 1fr;
  }

  .location-copy {
    padding: 52px 20px;
  }

  .location-visual {
    min-height: 330px;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero::before {
    background: linear-gradient(0deg, rgba(8, 10, 12, 0.95), rgba(8, 10, 12, 0.22));
  }

  .page-title {
    font-size: 40px;
  }

  .decision-row,
  .service-spec > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
