:root {
  color-scheme: light;
  --ink: #1d1718;
  --muted: #625c56;
  --line: #ded7ce;
  --paper: #fdf8f4;
  --paper-strong: #f7eee8;
  --rose: #e6a9b8;
  --rose-dark: #ad6f83;
  --sage: #8e9b89;
  --clay: #af7b66;
  --black: #1c1718;
  --white: #ffffff;
  --display: "Marcellus", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 22px 70px rgba(88, 54, 62, 0.12);
  --radius: 8px;
  --shell: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  position: relative;
  background:
    linear-gradient(180deg, #fdf8f4 0%, #fffaf6 38%, #f7eee8 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("assets/background-art.svg") top -80px right -260px / min(105vw, 1280px) auto repeat-y;
  opacity: 0.56;
}

body > * {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section > .shell {
  position: relative;
  z-index: 1;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.76;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(253, 248, 244, 0.9);
  border-bottom: 1px solid rgba(222, 215, 206, 0.72);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(20, 19, 19, 0.08);
}

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

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

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--black);
}

.brand span {
  display: grid;
  gap: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 700;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
}

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

.nav-panel a,
.nav-cta,
.menu-toggle,
.text-link,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-panel a {
  min-height: 42px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: var(--paper-strong);
  color: var(--ink);
}

.nav-panel svg,
.nav-cta svg,
.menu-toggle svg,
.button svg,
.text-link svg,
.map-link svg,
.floating-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta {
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e8a8b8, #c98797);
  color: var(--white);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  box-shadow: 0 12px 28px rgba(173, 111, 131, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  background: linear-gradient(135deg, #c98797, #9f6475);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.hero {
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 118px;
  padding-bottom: 36px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(253, 248, 244, 0.96) 0%, rgba(253, 248, 244, 0.88) 43%, rgba(247, 238, 232, 0.72) 100%),
    radial-gradient(circle at 78% 22%, rgba(230, 169, 184, 0.28), transparent 30%),
    radial-gradient(circle at 16% 86%, rgba(142, 155, 137, 0.18), transparent 34%),
    url("assets/background-art.svg") right -250px top -320px / min(108vw, 1320px) auto no-repeat,
    url("assets/hero-linework.svg") center right / min(68vw, 860px) auto no-repeat;
  opacity: 1;
  filter: saturate(0.98);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.68fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.05rem, 5.8vw, 5.15rem);
  font-weight: 400;
}

h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  font-weight: 400;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 400;
}

.hero-lead,
.section-copy p,
.cta p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  min-height: 52px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.button.primary {
  background: linear-gradient(135deg, var(--black), #3a2c31);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(28, 23, 24, 0.18);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--ink);
  background: var(--white);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 0;
}

.metrics div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(222, 215, 206, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
}

.metrics dt {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  transform: rotate(0.6deg);
}

.hero-visual img,
.hero-photo,
.brand-showcase-logo {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.brand-showcase {
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(145deg, rgba(28, 23, 24, 0.98), rgba(60, 47, 51, 0.96) 48%, rgba(173, 111, 131, 0.72)),
    var(--black);
}

.brand-showcase::before,
.brand-showcase::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  pointer-events: none;
}

.brand-showcase::after {
  inset: 54px;
  border-color: rgba(230, 169, 184, 0.28);
  transform: rotate(-3deg);
}

.brand-halo {
  position: absolute;
  width: min(78%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(230, 169, 184, 0.32), transparent 62%),
    url("assets/background-art.svg") center / 170% auto no-repeat;
  opacity: 0.86;
  filter: blur(0.2px);
}

.brand-showcase-logo {
  position: relative;
  z-index: 1;
  width: min(68%, 360px);
  height: auto;
  min-height: 0;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.brand-showcase-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(28, 23, 24, 0.72);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.brand-showcase-copy span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-showcase-copy strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 400;
  line-height: 1;
}

.brand-showcase-copy small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.hero-photo {
  background:
    linear-gradient(180deg, rgba(28, 23, 24, 0) 44%, rgba(28, 23, 24, 0.26)),
    var(--hero-image),
    url("assets/hero-linework.svg");
  background-position: center;
  background-size: cover;
}

.hero-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(28, 23, 24, 0.78);
  color: var(--white);
}

.hero-note span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.intro-band {
  padding: 0;
  background:
    linear-gradient(135deg, rgba(230, 169, 184, 0.2), rgba(142, 155, 137, 0.12)),
    var(--black);
  color: var(--white);
}

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

.strip-item {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.strip-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.strip-item span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strip-item strong {
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.strip-item:hover,
.strip-item:focus-visible {
  background: #1e1c1b;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article,
.style-card,
.steps li,
.faq-list details,
.contact-card,
.portfolio figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(8px);
}

.feature-list article {
  padding: 22px;
  display: grid;
  gap: 8px;
}

.feature-list span,
.steps span {
  color: var(--rose-dark);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-list p,
.style-card p,
.steps p,
.faq-list p,
.contact-card p,
.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.about::before {
  background:
    linear-gradient(115deg, rgba(142, 155, 137, 0.12), transparent 42%),
    url("assets/background-art.svg") left -560px top -420px / 1160px auto no-repeat;
}

.styles {
  background:
    linear-gradient(135deg, rgba(247, 238, 232, 0.94), rgba(253, 248, 244, 0.78)),
    var(--paper-strong);
}

.styles::before {
  background:
    linear-gradient(145deg, transparent 18%, rgba(230, 169, 184, 0.16) 54%, transparent 78%),
    url("assets/background-art.svg") right -430px top -430px / 1220px auto no-repeat;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

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

.style-card {
  min-height: 196px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(88, 54, 62, 0.06);
}

.style-card:nth-child(2n) {
  background: rgba(125, 146, 125, 0.12);
}

.style-card:nth-child(3n) {
  background: rgba(217, 154, 174, 0.16);
}

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

.portfolio::before {
  background:
    linear-gradient(35deg, rgba(230, 169, 184, 0.12), transparent 34%),
    url("assets/background-art.svg") left -500px top -240px / 1180px auto no-repeat;
}

.portfolio figure {
  margin: 0;
  overflow: hidden;
}

.image-slot {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(145deg, rgba(20, 19, 19, 0.06), rgba(217, 154, 174, 0.16)),
    url("assets/portfolio-placeholder.svg") center / 78% no-repeat,
    var(--paper-strong);
}

.image-slot.has-photo {
  background:
    linear-gradient(180deg, rgba(28, 23, 24, 0) 54%, rgba(28, 23, 24, 0.18)),
    var(--work-image),
    url("assets/portfolio-placeholder.svg"),
    var(--paper-strong);
  background-position: center;
  background-size: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.work-card:hover .image-slot.has-photo,
.work-card:focus-within .image-slot.has-photo {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.015);
}

.image-slot::after {
  content: attr(data-slot);
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: rgba(20, 19, 19, 0.24);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
}

.image-slot.has-photo::after {
  content: "";
}

figcaption {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 800;
}

.text-link {
  min-height: 42px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--rose);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.process {
  background:
    linear-gradient(135deg, rgba(173, 111, 131, 0.2), rgba(28, 23, 24, 0) 42%),
    var(--black);
  color: var(--white);
}

.process .eyebrow,
.process .steps span {
  color: var(--rose);
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 230px;
  padding: 24px;
  background: rgba(35, 29, 30, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.cta {
  padding: 72px 0;
  background:
    linear-gradient(120deg, rgba(28, 23, 24, 0.12), rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, #8e9b89, #c48a9b);
  color: var(--white);
}

.faq::before {
  background:
    linear-gradient(100deg, rgba(142, 155, 137, 0.1), transparent 50%),
    url("assets/background-art.svg") right -520px top -520px / 1240px auto no-repeat;
}

.cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta h2 {
  margin-bottom: 14px;
}

.cta p,
.cta .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

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

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list summary::after {
  content: "+";
  color: var(--rose-dark);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding-bottom: 20px;
}

.contact {
  background:
    linear-gradient(135deg, rgba(247, 238, 232, 0.96), rgba(255, 250, 246, 0.82)),
    var(--paper-strong);
}

.contact::before {
  background:
    linear-gradient(35deg, rgba(230, 169, 184, 0.16), transparent 42%),
    url("assets/background-art.svg") left -480px bottom -620px / 1240px auto no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(32px, 7vw, 80px);
  align-items: center;
}

.contact-copy {
  max-width: 680px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 28px;
  font-style: normal;
  box-shadow: var(--shadow);
}

.contact-label {
  margin-top: 14px;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-label:first-child {
  margin-top: 0;
}

.phone {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
}

.map-link {
  justify-content: flex-start;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
}

.site-footer {
  padding: 56px 0 28px;
  background: var(--black);
  color: var(--white);
}

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

.footer-brand img {
  background: var(--black);
}

.site-footer .footer-grid > div:last-child {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  gap: 10px 18px;
}

.site-footer nav a {
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--rose);
}

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

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 12;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.38);
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
}

:focus-visible {
  outline: 3px solid rgba(184, 109, 132, 0.42);
  outline-offset: 3px;
}

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

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .nav-cta {
    display: none;
  }

  .nav-panel {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel a {
    justify-content: flex-start;
    min-height: 48px;
  }

  .hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img,
  .hero-photo {
    min-height: 440px;
  }

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

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

  .cta-grid,
  .section-heading.split,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1120px);
  }

  html {
    scroll-padding-top: 82px;
  }

  .section {
    padding: 76px 0;
  }

  .nav {
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(253, 248, 244, 0.96), rgba(253, 248, 244, 0.9)),
      radial-gradient(circle at 92% 18%, rgba(230, 169, 184, 0.22), transparent 30%),
      url("assets/background-art.svg") center top -180px / 900px auto no-repeat,
      url("assets/hero-linework.svg") center top 80px / 760px auto no-repeat;
  }

  h1 {
    font-size: clamp(2.8rem, 12.5vw, 3.85rem);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.3rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .metrics,
  .service-strip,
  .style-grid,
  .portfolio-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metrics div {
    min-height: 84px;
  }

  .strip-item,
  .strip-item:last-child {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-visual,
  .hero-visual img,
  .hero-photo {
    display: none;
  }

  .phone {
    font-size: 1.6rem;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}

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