:root {
  --font-display: "Manrope", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-editorial: "DM Serif Display", Georgia, serif;
  --ivory: #f7f7f4;
  --sand: #deded9;
  --clay: #171715;
  --clay-dark: #000000;
  --olive: #2c2d2a;
  --ink: #101110;
  --yellow: #b49a68;
  --silver: #c9cac6;
  --metal: #8b7449;
  --line: rgba(16, 17, 16, 0.2);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  overflow-x: hidden;
}

.admin-bar .site-header {
  top: 32px;
}

.skip-link:focus {
  z-index: 9999;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

body,
button,
a,
input {
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0;
  font-size: clamp(1.1875rem, 1.07rem + 0.32vw, 1.34rem);
  line-height: 1.62;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display), Arial, sans-serif;
}

em {
  color: var(--metal);
  font-family: var(--font-editorial), Georgia, serif;
  font-weight: 400;
}

.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;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: 92px;
  padding: 16px clamp(24px, 4vw, 72px);
  border-bottom: 1px solid rgba(16, 17, 16, 0.14);
  background: rgba(247, 247, 244, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand-custom-logo,
.brand-custom-logo .custom-logo-link {
  display: block;
}

.brand-custom-logo img {
  width: auto;
  max-width: 240px;
  max-height: 60px;
}

.brand:focus-visible,
.nav a:focus-visible,
.text-link:focus-visible,
footer a:focus-visible {
  outline: 3px solid var(--metal);
  outline-offset: 5px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--clay);
  color: white;
  font-family: var(--font-display), Arial, sans-serif;
}

.brand-mark b,
.brand-mark i {
  position: absolute;
  font-style: normal;
  line-height: 1;
}

.brand-mark b {
  top: 3px;
  left: 8px;
  font-size: 28px;
}

.brand-mark i {
  right: 8px;
  bottom: 4px;
  font-size: 25px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 17px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-name strong {
  font-weight: 800;
}

.brand-name span {
  color: #666762;
  font-weight: 500;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 44px);
}

.nav .menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 58px;
  padding: 15px 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 16px;
  font-weight: 800;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.button span {
  font-size: 22px;
}

.button:hover {
  background: #343532;
  box-shadow: 0 12px 30px rgba(16, 17, 16, 0.22);
  transform: translateY(-2px);
}

.button:focus-visible,
.menu-button:focus-visible,
.comparison input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button-small {
  min-height: 48px;
  padding: 12px 20px;
  font-size: 14px;
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  min-height: calc(100vh - 92px);
  background:
    linear-gradient(rgba(16, 17, 16, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 16, 0.06) 1px, transparent 1px),
    var(--ivory);
  background-size: 40px 40px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px clamp(24px, 5vw, 88px);
  background: linear-gradient(90deg, rgba(247, 247, 244, 0.99) 78%, rgba(247, 247, 244, 0));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #4d4e4a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  justify-content: space-between;
  max-width: 690px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.hero .eyebrow b {
  color: var(--ink);
  font-weight: 700;
}

.hero h1 {
  max-width: 850px;
  margin-top: 40px;
  font-size: clamp(3.35rem, 6.3vw, 7.35rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.hero h1 em {
  display: inline-block;
  font-size: 0.93em;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 680px;
  margin-top: 38px;
  color: #3f403d;
  font-size: clamp(1.25rem, 1.15rem + 0.48vw, 1.65rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 2px solid var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.proof-row div {
  display: flex;
  align-items: flex-end;
  gap: 11px;
}

.proof-row strong {
  color: var(--ink);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 31px;
  line-height: 1;
}

.proof-row span {
  max-width: 92px;
  color: #50514d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--sand);
}

.plus-grid {
  position: absolute;
  z-index: 4;
  top: 28px;
  right: 28px;
  display: grid;
  grid-template-columns: repeat(3, 38px);
  color: white;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.comparison {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.comparison > img,
.comparison-after,
.comparison-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  filter: grayscale(1) contrast(0.88) brightness(0.72);
}

.comparison-after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--reveal);
  overflow: hidden;
}

.comparison-after img {
  width: calc(100vw * 0.55);
  max-width: none;
  filter: grayscale(0.42) saturate(0.55) contrast(1.04);
}

.comparison::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.38));
  content: "";
  pointer-events: none;
}

.comparison-line {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 3px;
  background: white;
  transform: translateX(-50%);
}

.comparison-line i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 22px;
  font-style: normal;
  transform: translate(-50%, -50%);
}

.comparison input {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  opacity: 0;
}

.comparison-label {
  position: absolute;
  z-index: 2;
  bottom: 38px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(25, 26, 23, 0.7);
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.before-label {
  left: 28px;
}

.after-label {
  right: 28px;
  background: rgba(10, 10, 10, 0.88);
}

.image-note {
  position: absolute;
  z-index: 6;
  right: 30px;
  bottom: 92px;
  max-width: 230px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: right;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.statement {
  padding: 120px clamp(24px, 10vw, 180px);
  background: var(--ink);
  color: white;
}

.statement p {
  max-width: 1280px;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(2.55rem, 5.2vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.statement strong {
  color: white;
  font-family: var(--font-editorial), Georgia, serif;
  font-weight: 400;
}

.section {
  max-width: 1540px;
  margin: 0 auto;
  padding: 128px clamp(24px, 6vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 28px 70px;
  align-items: end;
}

.section-heading > .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.method h2,
.about h2,
.faq h2 {
  max-width: 850px;
  font-size: clamp(2.65rem, 4.7vw, 5.6rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: #4c4d49;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 70px;
}

.service-card {
  display: block;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform 220ms ease, border 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  border-color: var(--ink);
  box-shadow: 0 24px 50px rgba(16, 17, 16, 0.12);
  transform: translateY(-7px);
}

.service-card:focus-visible,
.project-card:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 5px;
}

.service-card-content {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 430px;
  flex-direction: column;
  padding: 30px;
}

.service-sign {
  color: var(--ink);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 0.8;
}

.service-tag {
  display: block;
  margin-top: 72px;
  color: #5c5e58;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 14px;
  font-size: 31px;
  letter-spacing: -0.04em;
}

.service-card p {
  margin-top: 18px;
  color: #51524e;
  font-size: 19px;
}

.card-arrow {
  position: absolute;
  top: 26px;
  right: 28px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  font-size: 20px;
  transition: background 200ms ease, color 200ms ease;
}

.service-card:hover .card-arrow {
  background: var(--ink);
  color: white;
}

.projects {
  background: #0a0a09;
  color: white;
}

.section-projects {
  max-width: 1680px;
}

.heading-light > p:last-child {
  color: #d2d1cb;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-top: 74px;
}

.project-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: #20211f;
  transition: border 200ms ease, transform 200ms ease;
}

.project-card:hover {
  border-color: var(--yellow);
  transform: translateY(-5px);
}

.project-1 {
  grid-row: span 2;
}

.project-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.project-1 .project-image {
  min-height: 660px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.72) saturate(0.45);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 450ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.035);
  filter: grayscale(0.18) saturate(0.78);
}

.project-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.36));
  content: "";
}

.project-image > span {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-copy {
  position: relative;
  padding: 28px;
}

.project-copy h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.65rem);
  letter-spacing: -0.04em;
}

.project-copy p {
  max-width: 680px;
  margin-top: 12px;
  color: #d2d1cb;
  font-size: 19px;
}

.project-copy > span {
  display: inline-block;
  margin-top: 24px;
  color: #d4bf92;
  font-size: 14px;
  font-weight: 800;
}

.editorial-note {
  max-width: 800px;
  margin-top: 28px;
  color: #b7b8b1;
  font-size: 13px;
  line-height: 1.5;
}

.method {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.method-title {
  position: sticky;
  top: 130px;
  align-self: start;
}

.method h2 {
  margin-top: 34px;
}

.method-list {
  border-top: 1px solid var(--line);
}

.method-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.method-list article > span {
  color: var(--ink);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.method-list h3 {
  font-size: 31px;
}

.method-list p {
  max-width: 620px;
  margin-top: 10px;
  color: #50514d;
}

.rental-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: end;
  min-height: 590px;
  padding: 100px clamp(24px, 8vw, 140px);
  overflow: hidden;
  background: #252624;
  color: white;
}

.rental-banner h2 {
  max-width: 1100px;
  margin-top: 26px;
  font-size: clamp(3rem, 5.5vw, 6.6rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.rental-banner .eyebrow {
  color: #d5c397;
}

.rental-symbol {
  position: absolute;
  top: -90px;
  right: 5vw;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 370px;
  line-height: 1;
  pointer-events: none;
}

.rental-symbol b {
  position: absolute;
  top: 120px;
  right: 140px;
}

.button-light {
  position: relative;
  z-index: 2;
  border-color: white;
  background: white;
  color: var(--ink);
}

.button-light:hover {
  background: var(--silver);
  color: var(--ink);
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo::before {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: -24px;
  width: 56%;
  height: 58%;
  background:
    linear-gradient(rgba(16, 17, 16, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 16, 0.15) 1px, transparent 1px),
    var(--silver);
  background-size: 22px 22px;
  content: "";
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.015);
}

.about-photo span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 8px 11px;
  background: rgba(32, 33, 30, 0.85);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

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

.about-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 26px;
  color: #4c4d49;
}

.text-link-dark {
  margin-top: 34px;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}

.numbers > div {
  position: relative;
  min-height: 340px;
  padding: 64px clamp(24px, 5vw, 80px);
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.numbers > div:last-child {
  border-right: 0;
}

.numbers .math {
  position: absolute;
  top: -50px;
  right: 14px;
  color: rgba(16, 17, 16, 0.08);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 240px;
}

.numbers strong {
  position: relative;
  display: block;
  color: var(--ink);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(3.2rem, 5vw, 6.1rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.numbers p {
  position: relative;
  max-width: 340px;
  margin-top: 20px;
}

.faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.faq .section-heading {
  display: block;
}

.faq .section-heading h2 {
  margin-top: 34px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 96px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 21px;
  font-weight: 750;
  list-style: none;
}

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

.faq summary span {
  color: var(--ink);
  font-size: 14px;
}

.faq summary i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 24px;
  font-style: normal;
  transition: transform 200ms ease;
}

.faq details[open] summary i {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 720px;
  padding: 0 30px 30px 68px;
  color: #4d4e4a;
}

.final-cta {
  position: relative;
  padding: 130px 24px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--ink) 0 50%, var(--sand) 50% 100%);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 56px clamp(18px, 10vw, 180px);
  border: 1px solid rgba(16, 17, 16, 0.18);
  background: var(--ivory);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.16);
  content: "";
}

.giant-sign {
  position: absolute;
  top: -210px;
  left: 50%;
  color: rgba(16, 17, 16, 0.055);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 600px;
  line-height: 1;
  transform: translateX(-50%);
}

.final-cta > *:not(.giant-sign) {
  position: relative;
}

.final-cta .eyebrow {
  justify-content: center;
  color: #565750;
}

.final-cta h2 {
  margin-top: 30px;
  font-size: clamp(2.8rem, 5.5vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.final-cta h2 em {
  color: var(--metal);
}

.final-cta > p:not(.eyebrow) {
  max-width: 750px;
  margin: 30px auto 0;
}

.button-dark {
  margin-top: 42px;
  border-color: var(--ink);
  background: var(--ink);
}

.button-dark:hover {
  background: #050505;
}

footer.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 40px;
  align-items: end;
  padding: 72px clamp(24px, 6vw, 100px);
  background: var(--ink);
  color: white;
}

.footer-nav .menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.24);
  font-size: 15px;
}

.floating-whatsapp span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
}

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

.content-shell {
  width: min(100% - 48px, 1040px);
  min-height: 55vh;
  margin: 0 auto;
  padding: 110px 0;
}

.content-shell h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 6vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.content-shell h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.content-shell p,
.entry-content li {
  max-width: 70ch;
  margin-top: 24px;
  font-size: max(19px, 1.1875rem);
  line-height: 1.65;
}

.post-list {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.post-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.entry-content > * + * {
  margin-top: 28px;
}

.entry-content img {
  height: auto;
}

.error-page .button {
  margin-top: 34px;
}

.brand-footer .brand-mark {
  background: white;
  color: var(--ink);
}

.footer-copy > div {
  max-width: 480px;
  color: #cacbc5;
  font-size: 16px;
}

.footer-copy a {
  display: inline-block;
  margin-top: 16px;
  color: #d4bf92;
  font-weight: 800;
}

.footer-legal {
  color: #a7a8a2;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-button {
    display: flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span {
    width: 100%;
    height: 2px;
    background: var(--ink);
  }

  .nav {
    position: absolute;
    top: 92px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 20px 30px 32px;
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
  }

  .nav-open {
    display: flex;
  }

  .nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .header-cta {
    justify-self: end;
  }

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

  .hero-copy {
    min-height: 720px;
  }

  .hero-visual {
    min-height: 720px;
  }

  .comparison-after img {
    width: 100vw;
  }

  .rental-banner {
    grid-template-columns: 1fr;
  }

  .method,
  .faq {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .admin-bar .site-header {
    top: 46px;
  }
  .site-header {
    min-height: 78px;
    padding: 12px 20px;
  }

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

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

  .header-cta {
    display: none;
  }

  .nav {
    top: 78px;
  }

  .hero-copy {
    min-height: auto;
    padding: 70px 24px 76px;
  }

  .hero .eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero h1 {
    margin-top: 34px;
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .text-link {
    justify-content: space-between;
  }

  .proof-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 48px;
  }

  .proof-row div {
    align-items: center;
  }

  .proof-row span {
    max-width: none;
  }

  .hero-visual {
    min-height: 580px;
  }

  .plus-grid {
    display: none;
  }

  .image-note {
    right: 24px;
    bottom: 88px;
    left: 24px;
    max-width: none;
    text-align: center;
  }

  .statement {
    padding: 84px 24px;
  }

  .section {
    padding: 88px 24px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 30px;
  }

  .section-heading > p:last-child {
    margin-top: 26px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .service-card,
  .service-card-content {
    min-height: 390px;
  }

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

  .project-1 {
    grid-row: auto;
  }

  .project-1 .project-image,
  .project-image {
    min-height: 420px;
  }

  .method,
  .about,
  .faq {
    grid-template-columns: 1fr;
  }

  .method-title {
    position: static;
  }

  .method-list {
    margin-top: 10px;
  }

  .rental-banner {
    min-height: auto;
    padding: 90px 24px;
  }

  .rental-banner h2 {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }

  .rental-banner .button {
    width: 100%;
  }

  .about-photo {
    max-width: 620px;
  }

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

  .numbers > div {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .numbers > div:last-child {
    border-bottom: 0;
  }

  .faq {
    gap: 52px;
  }

  .faq details p {
    padding-left: 0;
  }

  .final-cta {
    padding: 100px 24px;
  }

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

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

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

  .menu-button {
    grid-column: 2;
  }

  .hero-visual {
    min-height: 500px;
  }

  .comparison-label {
    bottom: 24px;
    font-size: 10px;
  }

  .before-label {
    left: 14px;
  }

  .after-label {
    right: 14px;
  }

  .image-note {
    display: none;
  }

  .button {
    width: 100%;
  }

  .section-heading h2,
  .method h2,
  .about h2,
  .faq h2 {
    font-size: clamp(2.45rem, 12.5vw, 4rem);
  }

  .service-card-content {
    padding: 24px;
  }

  .service-tag {
    margin-top: 54px;
  }

  .project-1 .project-image,
  .project-image {
    min-height: 300px;
  }

  .method-list article {
    grid-template-columns: 48px 1fr;
  }

  .faq summary {
    grid-template-columns: 34px 1fr auto;
    gap: 10px;
    font-size: 18px;
  }

  .faq summary i {
    width: 36px;
    height: 36px;
  }

  .final-cta h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

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

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