:root {
  --ink: #172019;
  --ink-soft: #252b25;
  --paper: #e7ddc8;
  --white: #f5efe2;
  --line: rgba(10, 10, 10, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --muted: #676457;
  --whatsapp: #25d366;
  --whatsapp-dark: #159447;
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --header-h: 76px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

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

button,
summary {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.shell {
  width: min(calc(100% - 32px), 1240px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.54), transparent);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.site-header.is-scrolled,
.page-legal .site-header {
  color: var(--ink);
  background: rgba(244, 244, 241, 0.92);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::before,
.page-legal .site-header::before {
  opacity: 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(calc(100% - 32px), 1400px);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
  gap: 9px;
  line-height: 1;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.brand-meta {
  display: none;
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.68;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 0 15px;
  color: #07130b;
  background: var(--whatsapp);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.77rem;
  font-weight: 750;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  background: #35df75;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.25);
  transform: translateY(-1px);
}

.header-cta svg,
.button svg,
.floating-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(700px, 100svh);
  overflow: hidden;
  color: var(--white);
  align-items: flex-end;
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 48%;
  filter: grayscale(1) contrast(1.08) brightness(0.76);
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.02) 33%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 48px;
}

.eyebrow,
.section-index {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.section h2,
.final-cta h2,
.legal-page h1 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3.6rem, 15vw, 6.4rem);
  line-height: 0.84;
}

.hero-copy {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 3.9vw, 1.2rem);
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  margin-top: 30px;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  text-align: center;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.button-large {
  min-height: 58px;
}

.button-xl {
  min-height: 66px;
  padding-inline: 30px;
  font-size: 0.96rem;
}

.button-whatsapp {
  color: #07130b;
  background: var(--whatsapp);
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.2);
}

.button-whatsapp:hover {
  background: #37df76;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.3);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-rating {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 0.74rem;
  transition: color 0.2s ease;
}

.hero-rating:hover {
  color: var(--white);
}

.hero-rating strong {
  color: var(--white);
}

.hero-rating svg,
.text-link svg,
.inline-cta svg,
.reviews-link svg,
.work-card figcaption svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.stars {
  color: currentColor;
  font-size: 0.67rem;
  letter-spacing: 0.05em;
}

.scroll-cue {
  display: none;
}

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

.trust-grid {
  display: grid;
}

.trust-item {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(96px, 0.8fr) 1.7fr;
  align-items: baseline;
  gap: 16px;
}

.trust-item:last-child {
  border-bottom: 0;
}

.trust-item strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
}

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

.section {
  padding: 96px 0;
}

.section-head {
  display: grid;
  margin-bottom: 46px;
  gap: 22px;
}

.section-index {
  padding-top: 5px;
  color: var(--muted);
}

.section h2 {
  font-size: clamp(2.8rem, 12vw, 5.9rem);
  line-height: 0.94;
}

.section-intro {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1rem;
}

.portfolio {
  background: var(--paper);
}

.portfolio-grid {
  display: grid;
  gap: 42px;
}

.work-card a {
  display: block;
}

.image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #d8d8d3;
}

.image-wrap img,
.about-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.92);
  transition: transform 0.9s var(--ease), filter 0.6s ease;
}

.work-card:hover .image-wrap img {
  filter: contrast(1.03) saturate(1);
  transform: scale(1.025);
}

.work-card:nth-child(2) .image-wrap img {
  object-position: 52% 50%;
}

.work-card:nth-child(3) .image-wrap img {
  object-position: 50% 45%;
}

.work-card figcaption {
  display: grid;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  grid-template-columns: 36px 1fr auto;
  align-items: start;
  gap: 12px;
}

.work-card figcaption > span {
  padding-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
}

.work-card h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.work-card figcaption p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
}

.work-card figcaption svg {
  transition: transform 0.3s var(--ease);
}

.work-card:hover figcaption svg {
  transform: translateX(4px);
}

.instagram-callout {
  display: grid;
  margin-top: 64px;
  padding: 28px 0 0;
  border-top: 1px solid var(--ink);
  gap: 26px;
}

.instagram-callout p {
  max-width: 480px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 7vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.text-link,
.inline-cta,
.reviews-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 750;
  transition: gap 0.3s var(--ease), opacity 0.2s ease;
}

.text-link:hover,
.inline-cta:hover,
.reviews-link:hover {
  gap: 14px;
  opacity: 0.68;
}

.about {
  background: #e8e8e4;
}

.about-grid {
  display: grid;
  gap: 48px;
}

.about-image {
  position: relative;
  height: min(118vw, 680px);
  overflow: hidden;
  background: #d0d0cb;
}

.about-image > img {
  object-position: 50% 44%;
}

.image-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  margin-top: 24px;
}

.about-copy > p:not(.section-index) {
  max-width: 620px;
  margin-top: 22px;
  color: #4b4b48;
}

.about-copy .about-lead {
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.1;
}

.inline-cta {
  margin-top: 32px;
}

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

.section-head-light .section-index,
.process .section-index {
  color: rgba(255, 255, 255, 0.5);
}

.process-list {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.process-step {
  position: relative;
  display: grid;
  padding: 32px 0 38px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 48px 1fr;
  gap: 6px 18px;
}

.step-number {
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.67rem;
}

.step-icon {
  display: flex;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.process-step h3,
.process-step p {
  grid-column: 2;
}

.process-step h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.process-step p {
  max-width: 390px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.process-cta {
  display: flex;
  margin-top: 38px;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.process-cta .button {
  width: 100%;
}

.process-cta > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.reviews {
  background: var(--white);
}

.reviews-head {
  display: grid;
  margin-bottom: 48px;
  gap: 34px;
}

.reviews-head h2 {
  margin-top: 22px;
}

.rating-block {
  display: grid;
  width: max-content;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 13px;
}

.rating-block strong {
  font-family: var(--display);
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.07em;
  grid-row: span 2;
}

.rating-block .stars {
  align-self: end;
  font-size: 0.76rem;
}

.rating-block > span:last-child {
  color: var(--muted);
  align-self: start;
  font-size: 0.7rem;
}

.review-grid {
  display: grid;
  gap: 12px;
}

.review-card {
  display: flex;
  min-height: 285px;
  padding: 26px;
  background: var(--paper);
  flex-direction: column;
}

.quote-mark {
  height: 42px;
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 0.9;
}

.review-card blockquote {
  margin: 24px 0 34px;
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.review-card footer {
  display: grid;
  margin-top: auto;
  gap: 2px;
}

.review-card footer strong {
  font-size: 0.75rem;
}

.review-card footer span {
  color: var(--muted);
  font-size: 0.68rem;
}

.reviews-link {
  margin-top: 32px;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  gap: 48px;
}

.faq-intro h2 {
  margin-top: 22px;
}

.faq-intro > p:last-child {
  max-width: 430px;
  margin-top: 22px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--ink);
}

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

.accordion summary {
  display: grid;
  min-height: 80px;
  cursor: pointer;
  align-items: center;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  font-weight: 650;
  list-style: none;
}

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

.accordion summary i {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion summary i::before,
.accordion summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}

.accordion summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.answer {
  max-width: 620px;
  padding: 0 42px 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.answer a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}

.final-cta {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.final-cta-bg {
  position: absolute;
  top: -25%;
  left: 40%;
  width: 90vw;
  height: 90vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 12vw rgba(255, 255, 255, 0.012), 0 0 0 24vw rgba(255, 255, 255, 0.009);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 760px;
  padding-block: 100px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.final-cta .eyebrow {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.54);
}

.final-cta h2 {
  font-size: clamp(3.3rem, 14vw, 7.4rem);
  line-height: 0.88;
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 550px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
}

.final-cta .button {
  width: 100%;
  margin-top: 34px;
}

.final-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.site-footer {
  padding: 56px 0 calc(110px + env(safe-area-inset-bottom));
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}

.footer-grid {
  display: grid;
  gap: 46px;
}

.footer-brand .brand-name {
  font-size: 1.6rem;
}

.footer-brand p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.footer-links a {
  display: flex;
  min-height: 52px;
  border-bottom: 1px solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-links a span {
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  display: flex;
  color: rgba(255, 255, 255, 0.42);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.66rem;
}

.footer-legal a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 15px;
  bottom: calc(15px + env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 54px;
  padding: 0 19px;
  color: #07130b;
  background: var(--whatsapp);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24), 0 6px 20px rgba(37, 211, 102, 0.24);
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.79rem;
  font-weight: 800;
  transition: transform 0.25s var(--ease), background 0.2s ease, opacity 0.25s ease;
}

.floating-whatsapp:hover {
  background: #3be27a;
  transform: translateY(-3px);
}

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

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

/* Privacy page */
.page-legal {
  background: var(--paper);
}

.legal-page {
  padding: calc(var(--header-h) + 72px) 0 100px;
}

.legal-page .section-index {
  margin-bottom: 18px;
}

.legal-page h1 {
  max-width: 860px;
  font-size: clamp(3.4rem, 14vw, 7rem);
  line-height: 0.9;
}

.legal-updated {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.75rem;
}

.legal-content {
  max-width: 780px;
  margin-top: 72px;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.legal-content p,
.legal-content li {
  color: #454542;
  font-size: 0.9rem;
}

.legal-content ul {
  display: grid;
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
  gap: 7px;
}

.legal-content .legal-followup {
  margin-top: 12px;
}

.legal-content a {
  border-bottom: 1px solid currentColor;
}

.legal-back {
  display: inline-flex;
  margin-top: 48px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.78rem;
}

@media (min-width: 640px) {
  .brand-meta {
    display: inline;
  }

  .hero-actions {
    width: max-content;
    grid-template-columns: auto auto;
  }

  .hero-actions .button {
    min-width: 215px;
  }

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

  .trust-item {
    display: flex;
    padding: 28px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .trust-item:first-child {
    padding-left: 0;
  }

  .trust-item:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .trust-item strong {
    font-size: 1.3rem;
  }

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

  .work-card-featured,
  .work-card-wide {
    grid-column: span 2;
  }

  .work-card-featured .image-wrap,
  .image-wrap-wide {
    aspect-ratio: 16 / 10;
  }

  .instagram-callout {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .process-cta {
    align-items: flex-start;
  }

  .process-cta .button,
  .final-cta .button {
    width: max-content;
  }

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

  .review-card:last-child {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1.3fr;
  }

  .footer-legal {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  :root {
    --header-h: 86px;
  }

  .shell {
    width: min(calc(100% - 80px), 1240px);
  }

  .header-inner {
    width: min(calc(100% - 80px), 1400px);
  }

  .desktop-nav {
    display: flex;
  }

  .header-cta {
    min-width: 132px;
  }

  .hero {
    min-height: max(760px, 100svh);
  }

  .hero-image {
    object-position: center 48%;
  }

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

  .hero h1 {
    font-size: clamp(6.2rem, 9.3vw, 9.6rem);
  }

  .hero-copy {
    font-size: 1.1rem;
  }

  .scroll-cue {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 66px;
    display: flex;
    color: rgba(255, 255, 255, 0.55);
    align-items: center;
    gap: 10px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right bottom;
  }

  .scroll-cue span {
    display: block;
    width: 44px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
  }

  .section {
    padding: 150px 0;
  }

  .section-head {
    margin-bottom: 80px;
    grid-template-columns: minmax(170px, 0.35fr) 1fr;
  }

  .section h2 {
    font-size: clamp(4.6rem, 7.6vw, 7.1rem);
  }

  .section-intro {
    margin-left: 24%;
  }

  .portfolio-grid {
    grid-template-columns: 1.55fr 1fr;
    align-items: start;
    gap: 90px 26px;
  }

  .work-card-featured {
    grid-column: auto;
  }

  .work-card-featured .image-wrap {
    aspect-ratio: 4 / 5;
  }

  .work-card:nth-child(2) {
    margin-top: 150px;
  }

  .work-card-wide {
    width: 58%;
    margin-left: 25%;
    grid-column: span 2;
  }

  .image-wrap-wide {
    aspect-ratio: 3 / 4;
  }

  .instagram-callout {
    margin-top: 110px;
    padding-top: 38px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 9vw;
  }

  .about-image {
    height: 730px;
  }

  .about-copy h2 {
    font-size: clamp(4rem, 5.8vw, 6.2rem);
  }

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

  .process-step {
    display: flex;
    min-height: 440px;
    padding: 34px 34px 42px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
    flex-direction: column;
  }

  .process-step:first-child {
    padding-left: 0;
  }

  .process-step:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    margin-top: auto;
    margin-bottom: 26px;
  }

  .process-step h3,
  .process-step p {
    grid-column: auto;
  }

  .process-step h3 {
    font-size: 2rem;
  }

  .process-step p {
    min-height: 70px;
  }

  .process-cta {
    margin-top: 56px;
    align-items: center;
    flex-direction: row;
    gap: 18px;
  }

  .reviews-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

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

  .review-card:last-child {
    grid-column: auto;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 9vw;
  }

  .faq-intro {
    position: sticky;
    top: calc(var(--header-h) + 38px);
    align-self: start;
  }

  .faq-intro h2 {
    font-size: clamp(3.6rem, 5vw, 5.3rem);
  }

  .accordion summary {
    min-height: 94px;
    font-size: 1rem;
  }

  .final-cta,
  .final-cta-inner {
    min-height: 860px;
  }

  .final-cta-bg {
    top: -45%;
    left: 52%;
    width: 72vw;
    height: 72vw;
  }

  .final-cta h2 {
    font-size: clamp(6.1rem, 9.1vw, 9.5rem);
  }

  .site-footer {
    padding: 80px 0 94px;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.8fr 0.7fr;
    align-items: start;
  }

  .footer-legal {
    display: grid;
    grid-column: auto;
    justify-content: start;
    gap: 12px;
  }

  .floating-whatsapp {
    right: 24px;
    bottom: 24px;
    min-height: 60px;
    padding-inline: 22px;
  }

  .legal-page {
    padding-top: calc(var(--header-h) + 110px);
  }
}

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

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

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