:root {
  --navy: #062a59;
  --navy-deep: #031f46;
  --blue: #126cb6;
  --blue-light: #eaf6ff;
  --orange: #f47a18;
  --green: #009b24;
  --green-dark: #007c1d;
  --text: #0a183b;
  --muted: #4f5b68;
  --border: #dfe7ee;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shadow: 0 5px 22px rgba(2, 29, 62, 0.2);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: #f2f4f5;
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.site-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 20px auto;
  overflow: hidden;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.site-header {
  position: relative;
  z-index: 10;
  color: var(--white);
  background: linear-gradient(105deg, #126cb6 0%, #07519a 50%, #062a59 100%);
}

.header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 9px 28px;
}

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

.brand img {
  width: 142px;
  height: 62px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a,
.footer-column a {
  transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #ffd1a9;
}

.header-whatsapp {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.whatsapp-icon,
.button-chat-icon {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0;
}

.whatsapp-icon::before,
.button-chat-icon::before {
  content: "";
  width: 7px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 8px 0;
  transform: rotate(-28deg);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 11px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  margin: 3px 0;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-nav {
  padding: 6px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.mobile-nav .mobile-nav-cta {
  justify-content: center;
  margin-top: 12px;
  padding-inline: 18px;
  border: 1px solid var(--orange);
  border-radius: 7px;
}

.hero {
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  background: var(--blue-light);
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 26px 50px 42px;
  background:
    radial-gradient(circle at 35% 45%, rgba(255, 255, 255, 0.95), rgba(234, 246, 255, 0.36) 58%, transparent 79%),
    linear-gradient(110deg, #f7fbff 0%, #e8f5ff 100%);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 490px;
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-description {
  max-width: 480px;
  margin: 17px 0 0;
  color: #202b36;
  font-size: 14px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.phone-button:hover,
.header-whatsapp:hover {
  transform: translateY(-1px);
}

.button-whatsapp {
  min-width: 205px;
  color: var(--white);
  background: var(--green);
  border-color: #048b24;
  box-shadow: 0 2px 5px rgba(0, 117, 27, 0.22);
}

.button-whatsapp:hover {
  background: var(--green-dark);
}

.button-outline {
  min-width: 130px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.48);
  border-color: #7298bb;
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.hero-media {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
}

.hero-track {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  background: var(--white);
}

.hero-tile {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #d8e4eb;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-kitchen {
  grid-column: 1 / 3;
  grid-row: 1;
  clip-path: polygon(15% 0, 100% 0, 91% 100%, 0 100%);
  margin-left: -10%;
}

.hero-staircase {
  grid-column: 3;
  grid-row: 1;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -12%;
}

.hero-island {
  grid-column: 1;
  grid-row: 2;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.hero-living {
  grid-column: 2;
  grid-row: 2;
  clip-path: polygon(17% 0, 100% 0, 82% 100%, 0 100%);
  margin-left: -17%;
}

.hero-floor {
  grid-column: 3;
  grid-row: 2;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -16%;
}

.hero-dots {
  display: none;
}

.section-pad {
  padding-inline: 28px;
}

.services {
  padding-top: 34px;
  padding-bottom: 25px;
  background: var(--white);
}

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

.service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(6, 42, 89, 0.06);
  text-align: center;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.service-icon .glass {
  fill: #c9eff4;
}

.service-icon .accent {
  fill: var(--navy);
}

.service-icon .accent-stroke {
  stroke: var(--orange);
}

.service-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 18px;
}

.service-card p {
  flex: 1;
  margin: 0;
  color: #202a34;
  font-size: 13px;
  line-height: 1.55;
}

.service-card a {
  margin-top: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.mobile-arrow {
  display: none;
}

.projects {
  padding-top: 22px;
  padding-bottom: 36px;
  background: var(--white);
}

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

.section-heading h2,
.reasons > h2,
.faq > h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.18;
}

.section-heading p {
  margin: 7px 0 0;
  color: #303a45;
  font-size: 13px;
}

.projects-top-button {
  min-height: 43px;
  flex: 0 0 auto;
  padding: 9px 16px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.project-card {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.project-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 2px 7px rgba(6, 42, 89, 0.11);
}

.project-card h3 {
  margin: 9px 2px 0;
  font-size: 12px;
  line-height: 1.25;
}

.projects-mobile-button {
  display: none;
}

.reasons {
  padding-top: 19px;
  padding-bottom: 42px;
  border-top: 1px solid #e8edf1;
  background: var(--white);
}

.reasons > h2 {
  margin-bottom: 27px;
  text-align: center;
}

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

.reason-item {
  position: relative;
  min-width: 0;
  padding: 0 22px;
  text-align: center;
}

.reason-item + .reason-item {
  border-left: 1px solid #d8e0e7;
}

.reason-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 11px;
  color: var(--navy);
  font-size: 45px;
  font-weight: 800;
}

.reason-icon.medal {
  position: relative;
}

.reason-icon.medal::before {
  content: "";
  width: 29px;
  height: 29px;
  border: 4px solid var(--orange);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}

.reason-icon.medal::after {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 28px;
  height: 22px;
  background: linear-gradient(75deg, transparent 0 22%, var(--orange) 23% 43%, transparent 44% 56%, var(--orange) 57% 77%, transparent 78%);
}

.reason-icon.worker {
  position: relative;
  font-size: 31px;
}

.reason-icon.worker::before {
  content: "";
  position: absolute;
  top: 4px;
  width: 38px;
  height: 18px;
  border-radius: 18px 18px 3px 3px;
  background: var(--orange);
}

.reason-icon.handshake {
  color: var(--navy);
  text-shadow: 9px 4px 0 var(--orange);
}

.reason-item h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 15px;
}

.reason-item p {
  margin: 0;
  color: #313b46;
  font-size: 12.5px;
  line-height: 1.48;
}

.reason-arrow {
  display: none;
}

.faq {
  padding-top: 8px;
  padding-bottom: 54px;
  background: var(--white);
}

.faq > h2 {
  margin-bottom: 22px;
  text-align: center;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid #d5e0e9;
  border-radius: 8px;
  background: #fff;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 17px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 17px 14px;
}

.faq-answer p {
  margin: 0;
  color: #27313c;
  font-size: 13px;
  line-height: 1.55;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 25px 50px;
  color: var(--white);
  background: linear-gradient(110deg, #187cc2 0%, #126cb6 55%, #07559e 100%);
}

.contact-copy h2 {
  margin: 0 0 5px;
  font-size: 26px;
  line-height: 1.2;
}

.contact-copy p {
  margin: 0;
  font-size: 15px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 14px;
}

.phone-button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 2px 5px rgba(0, 65, 19, 0.22);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease;
}

.phone-button:hover {
  background: var(--green-dark);
}

.site-footer {
  color: var(--white);
  background: linear-gradient(110deg, #07376a 0%, #052d5a 50%, #031e43 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.72fr 1.35fr;
  gap: 44px;
  padding: 34px 42px 28px;
}

.footer-brand img {
  width: 148px;
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 245px;
  margin: 14px 0 0;
  color: #e2edf8;
  font-size: 13px;
  line-height: 1.6;
}

.footer-column h2 {
  margin: 10px 0 15px;
  font-size: 16px;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin: 0 0 9px;
  color: #e7eff7;
  font-size: 13px;
  line-height: 1.4;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffad67;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact a span {
  min-width: 16px;
  color: #ff9a42;
  font-size: 16px;
  text-align: center;
}

.footer-bottom {
  margin: 0 28px;
  padding: 16px 10px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #d9e7f4;
  font-size: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffad67;
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 155px minmax(0, 1fr) auto;
    gap: 12px;
    padding-inline: 20px;
  }

  .desktop-nav {
    gap: 13px;
    font-size: 12px;
  }

  .brand img {
    width: 128px;
  }

  .hero-copy {
    padding-left: 30px;
  }

  .contact-cta {
    padding-inline: 30px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 25px;
    padding-inline: 30px;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    grid-template-columns: 48% 52%;
  }

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

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

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }

  .reason-item:nth-child(3) {
    border-left: 0;
  }

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

@media (max-width: 768px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    background: var(--white);
  }

  .site-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
    padding: 6px 18px;
  }

  .brand img {
    width: 134px;
    height: 60px;
  }

  .desktop-nav,
  .header-whatsapp {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    display: block;
  }

  .hero-copy {
    padding: 28px 20px 20px;
    background:
      radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.6) 60%, transparent 85%),
      linear-gradient(110deg, #f4faff, #dff1ff);
  }

  .eyebrow {
    max-width: 310px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(30px, 8.2vw, 36px);
  }

  .hero-description {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    gap: 8px;
    margin-top: 21px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 49px;
  }

  .hero-media {
    padding-bottom: 12px;
    background: var(--white);
  }

  .hero-track {
    min-height: 0;
    display: flex;
    gap: 3px;
    overflow-x: auto;
    padding: 0;
    background: var(--white);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }

  .hero-track::-webkit-scrollbar {
    display: none;
  }

  .hero-tile,
  .hero-kitchen,
  .hero-staircase,
  .hero-island,
  .hero-living,
  .hero-floor {
    min-width: 46%;
    height: 165px;
    flex: 0 0 46%;
    margin: 0;
    clip-path: none;
    scroll-snap-align: start;
  }

  .hero-tile:first-child {
    min-width: 52%;
    flex-basis: 52%;
  }

  .hero-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding-top: 12px;
  }

  .hero-dots span {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: #c4c7ca;
  }

  .hero-dots span.active {
    background: var(--orange);
  }

  .section-pad {
    padding-inline: 10px;
  }

  .services {
    padding-top: 18px;
    padding-bottom: 16px;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .service-card {
    min-height: 96px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    text-align: left;
  }

  .service-icon {
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .service-content {
    display: block;
  }

  .service-card h3 {
    margin-bottom: 2px;
    font-size: 16px;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.42;
  }

  .service-card a {
    display: none;
  }

  .mobile-arrow {
    display: block;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1;
  }

  .projects {
    padding-top: 10px;
    padding-bottom: 28px;
  }

  .projects-heading {
    display: block;
    text-align: center;
  }

  .section-heading h2,
  .reasons > h2,
  .faq > h2 {
    font-size: 24px;
  }

  .section-heading p {
    margin-inline: auto;
    max-width: 500px;
    font-size: 12.5px;
  }

  .projects-top-button {
    display: none;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 9px;
    margin-top: 18px;
  }

  .project-card img {
    aspect-ratio: 4 / 3;
  }

  .project-card h3 {
    margin-top: 6px;
    font-size: 11px;
  }

  .projects-mobile-button {
    width: 100%;
    display: flex;
    margin-top: 18px;
  }

  .reasons {
    padding-top: 18px;
    padding-bottom: 27px;
  }

  .reasons > h2 {
    max-width: 360px;
    margin: 0 auto 14px;
  }

  .reason-grid {
    display: block;
  }

  .reason-item {
    min-height: 79px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    padding: 10px 4px;
    text-align: left;
  }

  .reason-item + .reason-item {
    border-top: 1px solid #dce4ea;
    border-left: 0;
  }

  .reason-icon {
    width: 46px;
    height: 46px;
    margin: 0;
    font-size: 35px;
  }

  .reason-icon.medal::before {
    width: 23px;
    height: 23px;
  }

  .reason-icon.medal::after {
    width: 23px;
    height: 18px;
  }

  .reason-item h3 {
    margin-bottom: 2px;
    font-size: 14px;
  }

  .reason-item p {
    font-size: 11.5px;
    line-height: 1.4;
  }

  .reason-arrow {
    display: block;
    color: var(--navy);
    font-size: 24px;
  }

  .faq {
    padding-top: 14px;
    padding-bottom: 30px;
  }

  .faq > h2 {
    margin-bottom: 15px;
  }

  .faq-item {
    margin-top: 6px;
  }

  .faq-item button {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .faq-answer {
    padding: 0 12px 12px;
  }

  .faq-answer p {
    font-size: 12px;
  }

  .contact-cta {
    display: block;
    padding: 24px 18px 20px;
    text-align: center;
  }

  .contact-copy h2 {
    max-width: 360px;
    margin: 0 auto 5px;
    font-size: 23px;
  }

  .contact-copy p {
    max-width: 390px;
    margin-inline: auto;
    font-size: 13px;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 17px;
  }

  .phone-button {
    width: 100%;
    min-height: 49px;
    font-size: 16px;
  }

  .footer-grid {
    display: block;
    padding: 25px 20px 18px;
  }

  .footer-brand img {
    width: 137px;
    height: 68px;
  }

  .footer-brand p {
    max-width: 440px;
    margin-top: 9px;
    font-size: 12px;
  }

  .footer-column {
    margin-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .footer-column h2 {
    position: relative;
    margin: 0;
    padding: 13px 24px 8px 0;
    font-size: 14px;
  }

  .footer-column h2::after {
    content: "⌄";
    position: absolute;
    right: 2px;
    color: #dceafb;
  }

  .footer-column ul {
    padding-bottom: 4px;
  }

  .footer-column li {
    margin-bottom: 7px;
    font-size: 12px;
  }

  .footer-bottom {
    margin: 0 20px;
    padding-block: 14px;
  }

  .footer-bottom p {
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .hero-tile,
  .hero-kitchen,
  .hero-staircase,
  .hero-island,
  .hero-living,
  .hero-floor {
    min-width: 58%;
    flex-basis: 58%;
    height: 155px;
  }

  .project-grid {
    gap-inline: 7px;
  }

  .service-card {
    grid-template-columns: 55px minmax(0, 1fr) 17px;
    gap: 7px;
  }

  .service-icon {
    width: 51px;
    height: 51px;
  }
}

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

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

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}
