:root {
  --ink: #11100f;
  --ink-soft: #1b1917;
  --stone: #f5f1e9;
  --stone-deep: #e8e0d2;
  --paper: #fffdf8;
  --gold: #d7a64f;
  --gold-light: #efc773;
  --muted: #706a62;
  --line: rgba(215, 166, 79, 0.48);
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --container: min(1280px, calc(100% - 64px));
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-light);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: 128px 0;
  background-color: var(--stone);
  background-image:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(115deg, transparent 0 49.8%, rgba(30, 27, 24, 0.025) 50%, transparent 50.2%);
}

.section-dark {
  position: relative;
  overflow: hidden;
  padding: 126px 0;
  color: #f7f4ee;
  background: var(--ink);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 72px;
}

.section-heading h2,
.process-heading h2,
.portfolio-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h2 em,
h1 em {
  color: var(--gold);
  font-weight: inherit;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(17, 16, 15, 0.94);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-fixed {
  position: fixed;
  background: rgba(17, 16, 15, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: grid;
  grid-template-columns: 260px 1fr 120px;
  align-items: center;
  width: min(1400px, calc(100% - 64px));
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 42px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--gold);
  transition: right 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="true"] {
  color: var(--gold-light);
}

.main-nav a:hover::after,
.main-nav a[aria-current="true"]::after {
  right: 0;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

.header-whatsapp svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  color: #f7f4ee;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 57%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, var(--ink) 34%, rgba(20, 19, 17, 0.94) 43%, rgba(20, 19, 17, 0.48) 59%, rgba(20, 19, 17, 0.04) 78%);
}

.hero-line {
  position: absolute;
  left: -110px;
  bottom: 60px;
  width: 360px;
  height: 220px;
  border: 1px solid rgba(215, 166, 79, 0.42);
  transform: skewY(29deg) rotate(1deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: min(900px, 100svh);
  padding-top: var(--header-height);
}

.hero-copy {
  width: min(760px, 52vw);
  padding: 80px 0 50px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 4.2vw, 66px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero-copy > p {
  max-width: 535px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-primary {
  color: #17130d;
  background: var(--gold-light);
  box-shadow: 0 14px 34px rgba(215, 166, 79, 0.2);
}

.button-primary:hover {
  background: #f8d688;
  box-shadow: 0 18px 42px rgba(215, 166, 79, 0.3);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 6px;
  color: var(--gold-light);
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 600;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.dark-link {
  color: #9a6c20;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 760px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding-right: 18px;
  color: rgba(255, 255, 255, 0.82);
  border-right: 1px solid rgba(215, 166, 79, 0.45);
  font-size: 13px;
  line-height: 1.35;
}

.hero-points li + li {
  padding-left: 18px;
}

.hero-points li:last-child {
  border-right: 0;
}

.hero-points span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px 30px 30px;
  border-right: 1px solid var(--line);
}

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

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

.service-number {
  margin-bottom: 32px;
  color: #a97825;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.1;
}

.service-item p {
  min-height: 88px;
  margin: 16px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-top: auto;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.86) contrast(1.02);
}

.process::after,
.contact::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 180px;
  border: 1px solid rgba(215, 166, 79, 0.34);
  pointer-events: none;
  transform: skewY(28deg) rotate(-4deg);
}

.process::after {
  top: 30px;
  right: -120px;
}

.process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.process-heading p {
  max-width: 460px;
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.62);
}

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

.process-list li {
  position: relative;
  padding: 0 34px 0 0;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 54px;
  right: 18px;
  height: 1px;
  background: var(--line);
}

.step-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.process-list h3 {
  margin: 24px 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.process-list p {
  max-width: 245px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.portfolio {
  padding-top: 136px;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1.45fr) minmax(0, 0.9fr);
  align-items: end;
  gap: 30px;
}

.portfolio-intro {
  align-self: start;
  padding-top: 0;
}

.portfolio-intro p {
  margin: 28px 0 34px;
  color: var(--muted);
}

.project {
  margin: 0;
}

.project img {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  background: var(--stone-deep);
  filter: saturate(0.88) contrast(1.02);
}

.project-large img {
  aspect-ratio: 1.08 / 1;
}

.project-small {
  padding-bottom: 7px;
}

.project-small img {
  aspect-ratio: 0.88 / 1;
}

.project figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  color: #3c3934;
  font-size: 13px;
  font-weight: 600;
}

.project figcaption i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.contact {
  padding-top: 136px;
}

.contact::after {
  right: -110px;
  bottom: 18px;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.92fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.contact-copy > p {
  max-width: 480px;
  margin: 30px 0 46px;
  color: rgba(255, 255, 255, 0.65);
}

.contact-list {
  max-width: 500px;
  font-style: normal;
}

.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 86px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(215, 166, 79, 0.35);
  color: rgba(255, 255, 255, 0.92);
  transition: color 160ms ease;
}

.contact-list > a:hover {
  color: var(--gold-light);
}

.contact-list svg {
  width: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-list span {
  display: grid;
  line-height: 1.5;
}

.contact-list small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-form {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.15;
}

.form-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.quote-form label > span {
  color: #4c4740;
  font-size: 12px;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  border: 1px solid #cfc6b7;
  border-radius: 3px;
  background: transparent;
  font-size: 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.quote-form textarea {
  min-height: 116px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 166, 79, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #7d5a1e;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.privacy-note {
  margin: 3px 0 0;
  color: #817a70;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.faq {
  padding-block: 110px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq-layout .section-heading {
  display: block;
  margin: 0;
}

.faq-list details {
  border-bottom: 1px solid rgba(77, 68, 57, 0.22);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
}

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

.faq-list summary span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 690px;
  margin: -4px 48px 24px 0;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(215, 166, 79, 0.28);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 36px;
}

.footer-brand {
  display: block;
  width: 210px;
}

.footer-links {
  display: flex;
  gap: 28px;
  padding-left: 36px;
  border-left: 1px solid rgba(215, 166, 79, 0.3);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-inner > p {
  margin: 0;
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #1faa59;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.27);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.floating-whatsapp svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 48px, 980px);
  }

  .header-inner {
    grid-template-columns: 220px 1fr 50px;
  }

  .brand {
    width: 190px;
  }

  .main-nav {
    gap: 22px;
  }

  .header-whatsapp span {
    display: none;
  }

  .hero-copy {
    width: 52vw;
  }

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

  .service-item:nth-child(2) {
    border-right: 0;
  }

  .service-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .service-item:nth-child(3) {
    padding-left: 0;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 54px 28px;
  }

  .contact-layout {
    gap: 64px;
  }

  .footer-inner {
    grid-template-columns: 210px 1fr;
  }

  .footer-inner > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --container: calc(100% - 40px);
    --header-height: 76px;
  }

  .section,
  .section-dark {
    padding: 92px 0;
  }

  .site-header,
  .site-header.is-fixed {
    position: absolute;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    position: relative;
    z-index: 2;
    width: 176px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 0;
    background: transparent;
    place-content: center;
    gap: 5px;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

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

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

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 90px 32px 40px;
    background: rgba(17, 16, 15, 0.99);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 0;
    font-family: var(--serif);
    font-size: 32px;
  }

  .header-whatsapp {
    display: none;
  }

  .hero {
    min-height: 850px;
  }

  .hero-media {
    inset: auto 0 0;
    width: 100%;
    height: 43%;
    object-position: center 66%;
  }

  .hero::after {
    background: linear-gradient(180deg, var(--ink) 51%, rgba(20, 19, 17, 0.55) 66%, transparent 86%);
  }

  .hero-inner {
    align-items: flex-start;
    min-height: 850px;
    padding-top: 128px;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(48px, 10vw, 68px);
  }

  .hero-copy > p {
    max-width: 600px;
    margin-top: 22px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-points {
    display: none;
  }

  .hero-line {
    display: none;
  }

  .section-heading,
  .process-heading {
    display: grid;
    gap: 28px;
    margin-bottom: 54px;
  }

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

  .portfolio-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .portfolio-intro {
    grid-column: 1 / -1;
    max-width: 560px;
    margin-bottom: 26px;
  }

  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 60px;
  }

  .faq-layout {
    gap: 36px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 32px);
  }

  .section,
  .section-dark {
    padding: 74px 0;
  }

  .brand {
    width: 154px;
  }

  .hero {
    min-height: 850px;
  }

  .hero-inner {
    min-height: 850px;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(43px, 12.2vw, 60px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

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

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-media {
    height: 38%;
  }

  .section-heading h2,
  .process-heading h2,
  .portfolio-intro h2,
  .contact-copy h2 {
    font-size: clamp(44px, 13vw, 60px);
  }

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

  .service-item,
  .service-item:first-child,
  .service-item:nth-child(3),
  .service-item:last-child {
    padding: 28px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .service-item:first-child {
    border-top: 0;
  }

  .service-item p {
    min-height: 0;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-list li {
    min-height: 164px;
    padding: 0 0 34px 66px;
  }

  .process-list li:not(:last-child)::after {
    top: 52px;
    bottom: 8px;
    left: 21px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .step-dot {
    position: absolute;
    left: 0;
    top: 0;
  }

  .process-list h3 {
    margin-top: 0;
    padding-top: 8px;
  }

  .process-cta {
    margin-top: 16px;
  }

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

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

  .portfolio-intro {
    grid-column: auto;
  }

  .project-small {
    width: 78%;
    margin-left: auto;
  }

  .contact-layout {
    gap: 48px;
  }

  .contact-list > a,
  .contact-list > div {
    align-items: flex-start;
  }

  .quote-form {
    margin-inline: -4px;
  }

  .faq-list summary {
    align-items: flex-start;
    font-size: 15px;
  }

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

  .footer-links {
    flex-wrap: wrap;
    padding: 22px 0 0;
    border-top: 1px solid rgba(215, 166, 79, 0.3);
    border-left: 0;
  }

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

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

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