:root {
  --nav-bg: #f9f6f1;
  --charcoal: #242420;
  --champagne: #b19a6a;
  --soft-line: #d8d0c0;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #ffffff;
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  width: 100%;
  background: var(--nav-bg);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100% - 48px, 1280px);
  height: 180px;
  margin: 0 auto;
}

.navbar-home {
  position: relative;
  z-index: 4;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  text-decoration: none;
}

.oven-icon {
  width: 104px;
  height: 104px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
}

.oven-icon * {
  vector-effect: non-scaling-stroke;
}

.oven-icon .oven-body {
  fill: var(--nav-bg);
}

.navbar-line {
  position: absolute;
  top: 60px;
  right: 0;
  left: 70px;
  z-index: 1;
  height: 3px;
  background: var(--champagne);
}

.navbar-line-bottom {
  top: 132px;
  height: 1px;
  background: var(--soft-line);
}

.navbar-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  padding: 0 28px;
  background: var(--nav-bg);
  transform: translate(-50%, -50%);
}

.navbar-brand img {
  display: block;
  width: 178px;
  height: 170px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.navbar-home:focus-visible,
.navbar-brand:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 5px;
}

.navbar-links {
  position: absolute;
  top: 98px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.4vw, 42px);
  transform: translateY(-50%);
}

.navbar-links-left {
  right: calc(50% + 115px);
  left: 110px;
}

.navbar-links-right {
  right: 0;
  left: calc(50% + 115px);
}

.navbar-links a,
.mobile-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3b3730;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease;
}

.navbar-links a {
  position: relative;
  height: 38px;
  padding: 0 2px;
}

.navbar-links a:not(.navbar-cta)::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 1px;
  background: var(--champagne);
  content: '';
  transition: right 180ms ease, left 180ms ease;
}

.navbar-links a:not(.navbar-cta):hover::after,
.navbar-links a:not(.navbar-cta):focus-visible::after {
  right: 0;
  left: 0;
}

.navbar-links a:hover,
.mobile-menu a:hover {
  color: #8b7348;
}

.navbar-links .navbar-cta,
.mobile-menu .navbar-cta {
  min-width: 154px;
  padding: 0 18px;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--nav-bg);
}

.navbar-links .navbar-cta:hover,
.mobile-menu .navbar-cta:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: #ffffff;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  background: var(--nav-bg);
  padding: 18px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
  width: min(100% - 48px, 1280px);
  min-height: 610px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  padding: clamp(54px, 7vw, 104px) clamp(44px, 6vw, 92px) 60px 0;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  max-width: 570px;
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(54px, 5.3vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-content > p {
  max-width: 470px;
  margin: 36px 0 0;
  color: #625e55;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-primary {
  min-height: 48px;
  padding: 0 24px;
  background: var(--charcoal);
  color: var(--nav-bg);
  transition: background 180ms ease;
}

.hero-primary:hover {
  background: var(--champagne);
}

.hero-secondary {
  position: relative;
  min-height: 48px;
  color: var(--charcoal);
  gap: 9px;
}

.hero-secondary::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--champagne);
  content: '';
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 180ms ease;
}

.hero-secondary:hover::after {
  transform: scaleX(1);
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #ddd7cb;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transition: transform 700ms ease;
}

.hero-visual:hover img {
  transform: scale(1.012);
}

.hero-visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 13px 17px;
  background: rgba(36, 36, 32, 0.88);
  color: #f9f6f1;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-visual figcaption span {
  margin: 0 7px;
  color: var(--champagne);
}

@media (max-width: 1040px) {
  .navbar-links {
    display: none;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 2px;
    z-index: 5;
    display: flex;
    width: 38px;
    height: 38px;
    padding: 10px 5px;
    border: 0;
    background: var(--nav-bg);
    cursor: pointer;
    transform: translateY(-50%);
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--charcoal);
    transition: transform 180ms ease;
  }

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

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

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 10;
    padding: 26px 24px 30px;
    border-top: 1px solid var(--soft-line);
    background: var(--nav-bg);
    box-shadow: 0 18px 35px rgba(36, 36, 32, 0.08);
    align-items: center;
    flex-direction: column;
    gap: 24px;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  }

  .hero-content {
    padding-right: 44px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 8px 0 32px;
  }

  .hero-inner {
    display: flex;
    width: min(100% - 32px, 1280px);
    min-height: 0;
    flex-direction: column;
  }

  .hero-content {
    padding: 54px 8px 52px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 64px);
  }

  .hero-content > p {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 34px;
    gap: 22px;
  }

  .hero-visual {
    height: min(118vw, 540px);
  }

  .hero-visual figcaption {
    right: 12px;
    bottom: 12px;
    padding: 11px 12px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }
}

/* Conteúdo da página principal */
.section {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px 30px;
  margin-bottom: 38px;
}

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

.eyebrow {
  margin: 0;
  color: #9f8250;
  font: 700 11px/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.section-heading h2,
.reasons-intro h2,
.quote-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #20201d;
  font: 500 clamp(40px, 4.2vw, 62px)/1.02 Arial, Helvetica, sans-serif;
  letter-spacing: -.045em;
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid #b59a67;
  color: #20201d;
  font: 700 11px/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-more {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 6px;
  padding-right: 0;
  padding-left: 0;
  border-bottom: 1px solid #b59a67;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  color: #20201d;
  font: 700 11px/1.2 Arial, sans-serif;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.section-more::after { margin-left: 10px; content: '+'; }
.section-more[aria-expanded="true"]::after { content: '−'; }
.disclosure-content[hidden] { display: none !important; }
.service-grid-extra { margin-top: 32px; }
.service-grid-extra .service-card { border-bottom: 0; }
.method-extra { grid-column: 2; margin-top: 4px; padding: 28px 30px; border: 1px solid rgba(209,187,140,.35); }
.method-extra p { margin: 0 0 14px; color: rgba(248,245,239,.68); font: 13px/1.65 Arial, sans-serif; }
.method-extra p:last-child { margin-bottom: 0; }
.method-extra strong { color: #d1bb8c; font-weight: 600; }

.projects-preview {
  padding: 100px 0 116px;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  border-top: 1px solid #b89c67;
  border-bottom: 1px solid #ded8cc;
}

.experience-strip > div {
  display: flex;
  min-height: 128px;
  padding: 25px 28px;
  border-right: 1px solid #ded8cc;
  flex-direction: column;
  justify-content: center;
}

.experience-strip > div:last-child { border-right: 0; }
.experience-strip strong { color: #20201d; font: 500 28px/1.1 Arial, sans-serif; letter-spacing: -.03em; }
.experience-strip span { margin-top: 9px; color: #77736b; font: 11px/1.4 Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 270px;
  gap: 14px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: #e8e4dc;
  color: #fff;
  text-decoration: none;
}

.project-card-wide {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.project-card:hover img { transform: scale(1.035); }

.services-section {
  padding: 102px 0 110px;
  border-top: 1px solid #ded8cc;
}

.compact-heading {
  display: block;
  max-width: 680px;
}

.compact-heading h2 { margin-top: 14px; }
.compact-heading > p:last-child { margin: 22px 0 0; color: #706e68; font: 16px/1.7 Arial, Helvetica, sans-serif; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid #b89c67;
  border-bottom: 1px solid #ded8cc;
}

.service-card {
  min-height: 280px;
  padding: 28px 28px 34px;
  border-right: 1px solid #ded8cc;
}

.service-card:nth-child(3n) { border-right: 0; }
.service-card:nth-child(-n + 3) { border-bottom: 1px solid #ded8cc; }
.service-card > span, .process-list > li > span { color: #a68852; font: 700 11px/1 Arial, sans-serif; letter-spacing: .16em; }
.service-card h3 { margin: 66px 0 18px; color: #20201d; font: 500 23px/1.15 Arial, sans-serif; letter-spacing: -.025em; }
.service-card p { margin: 0; color: #74716a; font: 14px/1.65 Arial, sans-serif; }

.systems-section {
  padding: 84px 0;
  border-top: 1px solid #ded8cc;
  background: #eee9df;
}

.systems-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 40px 90px;
}

.systems-copy h2 {
  margin: 14px 0 22px;
  color: #20201d;
  font: 500 clamp(38px, 4vw, 58px)/1.02 Arial, Helvetica, sans-serif;
  letter-spacing: -.045em;
}

.systems-copy > p:last-child {
  max-width: 560px;
  margin: 0;
  color: #706d66;
  font: 15px/1.7 Arial, Helvetica, sans-serif;
}

.systems-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #b29662;
  border-left: 1px solid #d2ccbf;
}

.systems-examples span {
  display: flex;
  min-height: 76px;
  padding: 20px 24px;
  border-right: 1px solid #d2ccbf;
  border-bottom: 1px solid #d2ccbf;
  color: #24231f;
  font: 500 16px/1.3 Arial, Helvetica, sans-serif;
  align-items: center;
}

.systems-note {
  grid-column: 2;
  margin: -22px 0 0;
  color: #918c82;
  font: 10px/1.5 Arial, Helvetica, sans-serif;
}

.process-section {
  padding: 106px 0 112px;
  background: #20201d;
  color: #f8f5ef;
}

.light-heading h2 { color: #f8f5ef; }

.process-list {
  position: relative;
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  list-style: none;
}

.process-inner {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(60px, 9vw, 150px);
}

.process-inner .compact-heading { margin: 0; }
.process-inner .compact-heading > p:last-child { color: rgba(248,245,239,.58); }

.process-list::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 18px;
  width: 1px;
  background: rgba(201,177,128,.38);
  content: '';
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 28px;
  padding: 0 0 38px;
}

.process-list li:last-child { padding-bottom: 0; }
.process-list li > span {
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,177,128,.65);
  border-radius: 50%;
  background: #20201d;
  place-items: center;
}

.process-list li > div { padding: 7px 0 31px; border-bottom: 1px solid rgba(255,255,255,.11); }
.process-list li:last-child > div { border-bottom: 0; }
.process-list h3 { margin: 0 0 12px; font: 500 21px/1.2 Arial, sans-serif; }
.process-list p { max-width: 570px; margin: 0; color: rgba(248,245,239,.62); font: 14px/1.65 Arial, sans-serif; }
.process-list .process-note { margin-top: 12px; color: #d1bb8c; font-size: 12px; }

.process-list .process-decision { margin: 2px 0 38px; padding: 0; }
.process-list .process-decision > span { border-color: #d1bb8c; background: #d1bb8c; color: #20201d; }
.process-list .process-decision > div { margin-top: -7px; padding: 22px 25px 24px; border: 1px solid rgba(209,187,140,.5); background: rgba(209,187,140,.08); }
.decision-label { margin-bottom: 9px !important; color: #d1bb8c !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: .16em; text-transform: uppercase; }
.section-more-light { grid-column: 2; justify-self: start; margin-top: -16px; color: #f8f5ef; }

.reasons-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  padding: 112px 0;
}

.reasons-intro h2 { margin-top: 18px; }
.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid #b89c67; }
.reasons-grid article { min-height: 190px; padding: 30px 28px; border-right: 1px solid #ded8cc; border-bottom: 1px solid #ded8cc; }
.reasons-grid article:nth-child(even) { border-right: 0; }
.reasons-grid strong { color: #20201d; font: 500 19px/1.2 Arial, sans-serif; }
.reasons-grid p { margin: 28px 0 0; color: #737068; font: 14px/1.65 Arial, sans-serif; }

.quote-section {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 80px;
  margin-bottom: 110px;
  padding: 72px 76px;
  background: #d1bb8c;
}

.quote-copy h2 { margin-top: 15px; font-size: clamp(36px, 3.5vw, 54px); }
.quote-copy .eyebrow { color: #594b31; }
.quote-actions { display: flex; align-items: flex-start; flex-direction: column; gap: 14px; }
.quote-actions a { color: #28251f; font: 14px/1.4 Arial, sans-serif; text-decoration: none; }
.quote-actions .quote-main { margin-bottom: 10px; padding: 17px 22px; background: #20201d; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.quote-actions .quote-note { max-width: 390px; margin: 9px 0 0; color: rgba(40,37,31,.68); font: 11px/1.5 Arial, sans-serif; letter-spacing: .05em; }
.quote-actions .quote-trust { margin: 0; color: #28251f; font: 700 10px/1.5 Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }

.site-footer { padding: 66px 24px 20px; background: #181816; color: rgba(255,255,255,.72); }
.footer-inner { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 60px; width: min(100%, 1280px); margin: 0 auto 60px; }
.footer-brand img { width: 150px; height: auto; }
.footer-inner > div { display: flex; align-items: flex-start; flex-direction: column; gap: 9px; }
.footer-inner a, .footer-inner p { margin: 0; color: inherit; font: 13px/1.5 Arial, sans-serif; text-decoration: none; }
.footer-inner a:hover { color: #d1bb8c; }
.footer-label { margin-bottom: 12px !important; color: #d1bb8c !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: .16em; text-transform: uppercase; }
.footer-bottom { width: min(100%, 1280px); margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font: 11px/1.4 Arial, sans-serif; }

/* Página de projetos */
.projects-header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 128px; padding: 0 max(24px, calc((100vw - 1280px)/2)); background: var(--nav-bg); }
.projects-header img { width: 118px; display: block; }
.projects-header a { color: #24231f; font: 700 11px/1.2 Arial, sans-serif; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.projects-contact { justify-self: end; padding: 14px 18px; border: 1px solid #ae9360; }
.projects-page { padding: 82px max(24px, calc((100vw - 1280px)/2)) 120px; background: #f9f6f1; }
.projects-page-intro { max-width: 700px; margin-bottom: 70px; }
.projects-page-intro h1 { margin: 15px 0 20px; color: #20201d; font: 500 clamp(48px, 6vw, 82px)/.98 Arial, sans-serif; letter-spacing: -.055em; }
.projects-page-intro > p:last-child { max-width: 600px; color: #6f6b63; font: 16px/1.7 Arial, sans-serif; }
.projects-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px 24px; }
.projects-page-grid figure { scroll-margin-top: 24px; margin: 0; }
.projects-page-grid figure:nth-child(3n + 1) { grid-column: 1 / -1; }
.projects-page-grid img { display: block; width: 100%; height: 500px; object-fit: cover; background: #e4dfd4; }
.projects-page-grid figure:nth-child(3n + 1) img { height: 660px; }
.projects-page-grid figcaption { padding-top: 15px; color: #4c4943; font: 700 11px/1.4 Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.compact-footer { padding-top: 22px; }
.services-page { background: #fff; }
.service-grid-full { margin-top: 0; }
.process-page { min-height: calc(100vh - 128px); }
.process-page .light-heading h1 { margin: 14px 0 0; color: #f8f5ef; font: 500 clamp(48px, 6vw, 82px)/.98 Arial, sans-serif; letter-spacing: -.055em; }

/* Página legal */
.legal-page { background: #f9f6f1; }
.legal-content { width: min(100% - 48px, 860px); margin: 0 auto; padding: 90px 0 120px; }
.legal-content h1 { margin: 16px 0 28px; color: #20201d; font: 500 clamp(46px, 6vw, 76px)/1 Arial, sans-serif; letter-spacing: -.05em; }
.legal-content h2 { margin: 48px 0 12px; color: #20201d; font: 500 23px/1.25 Arial, sans-serif; }
.legal-content p { color: #67645d; font: 15px/1.75 Arial, sans-serif; }
.legal-content a { color: #715c37; }

@media (max-width: 900px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-strip { grid-template-columns: repeat(2, 1fr); }
  .experience-strip > div:nth-child(2) { border-right: 0; }
  .experience-strip > div:nth-child(-n + 2) { border-bottom: 1px solid #ded8cc; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-inner { grid-template-columns: 1fr; gap: 52px; }
  .section-more-light { grid-column: 1; margin-top: -24px; }
  .method-extra { grid-column: 1; }
  .service-card:nth-child(2), .service-card:nth-child(4), .service-card:nth-child(6) { border-right: 0; }
  .service-card:nth-child(3) { border-right: 1px solid #ded8cc; }
  .service-card:nth-child(-n + 4) { border-bottom: 1px solid #ded8cc; }
  .systems-inner { grid-template-columns: 1fr; gap: 48px; }
  .systems-note { grid-column: 1; margin-top: -28px; }
  .reasons-section { grid-template-columns: 1fr; gap: 54px; }
  .quote-section { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .section { width: min(100% - 32px, 1280px); }
  .projects-preview, .services-section, .reasons-section { padding: 74px 0; }
  .experience-strip { width: calc(100% - 32px); }
  .experience-strip > div { min-height: 112px; padding: 20px; }
  .experience-strip strong { font-size: 23px; }
  .section-heading { display: block; }
  .section-heading .text-link { display: inline-block; margin-top: 24px; }
  .project-grid { grid-auto-rows: 220px; gap: 8px; }
  .project-card-wide { grid-column: span 2; }
  .service-grid, .reasons-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(3) { min-height: 220px; border-right: 0; border-bottom: 1px solid #ded8cc; }
  .service-card h3 { margin-top: 42px; }
  .systems-section { padding: 68px 0; }
  .systems-examples { grid-template-columns: repeat(2, 1fr); }
  .systems-examples span { min-height: 58px; padding: 15px 13px; font-size: 13px; }
  .process-section { padding: 76px 0; }
  .process-list li { grid-template-columns: 34px 1fr; gap: 18px; padding-bottom: 30px; border: 0; }
  .process-list::before { left: 16px; }
  .process-list li > span { width: 34px; height: 34px; }
  .process-list h3 { margin-top: 0; }
  .process-list .process-decision { margin-bottom: 30px; }
  .process-list .process-decision > div { padding: 20px; }
  .reasons-grid article { min-height: 160px; border-right: 0; }
  .quote-section { width: calc(100% - 32px); margin-bottom: 70px; padding: 48px 28px; }
  .quote-actions a:not(.quote-main) { overflow-wrap: anywhere; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .projects-header { grid-template-columns: 1fr auto; min-height: 96px; }
  .projects-header > a:nth-child(2) { order: -1; }
  .projects-header img { width: 88px; }
  .projects-back { display: none; }
  .projects-page { padding-top: 56px; }
  .projects-page-grid { grid-template-columns: 1fr; gap: 38px; }
  .projects-page-grid figure:nth-child(3n + 1) { grid-column: auto; }
  .projects-page-grid img, .projects-page-grid figure:nth-child(3n + 1) img { height: min(75vw, 430px); }
}

/* Tablet e janelas estreitas: evita largura horizontal e navegação deslocada */
@media (max-width: 900px) {
  .navbar {
    width: min(100% - 32px, 1280px);
    height: 120px;
  }

  .navbar-home {
    display: none;
  }

  .navbar-line {
    top: 45px;
    left: 0;
    height: 1px;
  }

  .navbar-line-bottom {
    top: 92px;
    height: 1px;
  }

  .navbar-brand {
    width: 158px;
    padding: 0 18px;
  }

  .navbar-brand img {
    width: 124px;
    height: 110px;
  }

  .hero {
    padding: 8px 0 32px;
  }

  .hero-inner {
    display: flex;
    width: min(100% - 32px, 1280px);
    height: auto;
    overflow: hidden;
    flex-direction: column;
  }

  .hero-content {
    order: 1;
    width: 100%;
    height: auto;
    padding: clamp(42px, 8vw, 68px) clamp(28px, 7vw, 56px);
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(45px, 9vw, 66px);
  }

  .hero-visual {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: min(58vw, 420px);
  }

  .hero-visual img {
    object-position: 58% center;
  }
}

@media (max-width: 640px) {
  .navbar {
    width: min(100% - 32px, 1280px);
    height: 112px;
  }

  .navbar-home { display: none; }

  .navbar-line {
    top: 42px;
    left: 0;
    height: 1px;
  }

  .navbar-line-bottom {
    top: 86px;
    height: 1px;
  }

  .navbar-brand {
    width: 146px;
    padding: 0 15px;
  }

  .navbar-brand img {
    width: 116px;
    height: 104px;
  }
}

/* Hero arquitetónico — identidade distinta do projeto de beleza */
.hero {
  padding: 18px 0 58px;
  background: var(--nav-bg);
}

.hero-inner {
  position: relative;
  display: block;
  width: min(100% - 48px, 1280px);
  height: 650px;
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
  background: #282720;
}

.hero-visual {
  position: absolute;
  inset: 0;
  height: auto;
  margin: 0;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 21, 18, 0.34) 0%, rgba(21, 21, 18, 0.04) 54%, rgba(21, 21, 18, 0) 78%);
  content: '';
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: contrast(1.035) saturate(0.92);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: min(54%, 650px);
  padding: 58px 62px 54px;
  border-top: 3px solid var(--champagne);
  background: rgba(32, 32, 28, 0.95);
  backdrop-filter: blur(7px);
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  color: #f9f6f1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(52px, 4.6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-content > p {
  max-width: 500px;
  margin: 27px 0 0;
  color: rgba(249, 246, 241, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 32px;
  gap: 28px;
}

.hero-primary {
  min-height: 46px;
  background: var(--champagne);
  color: #20201c;
}

.hero-primary:hover {
  background: #d0bd94;
}

.hero-secondary {
  color: #f9f6f1;
}

.hero-visual figcaption {
  top: 24px;
  right: 24px;
  bottom: auto;
  padding: 12px 15px;
  border-left: 2px solid var(--champagne);
  background: rgba(25, 25, 22, 0.76);
  backdrop-filter: blur(6px);
}

@media (max-width: 760px) {
  .hero {
    padding: 8px 0 32px;
  }

  .hero-inner {
    display: flex;
    width: min(100% - 32px, 1280px);
    height: auto;
    overflow: visible;
    flex-direction: column;
  }

  .hero-content {
    position: relative;
    bottom: auto;
    left: auto;
    order: 1;
    width: 100%;
    padding: 46px 30px 42px;
    backdrop-filter: none;
  }

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

  .hero-content > p {
    margin-top: 24px;
    font-size: 15px;
  }

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

  .hero-visual {
    position: relative;
    inset: auto;
    order: 2;
    height: min(112vw, 520px);
  }

  .hero-visual figcaption {
    top: auto;
    right: 12px;
    bottom: 12px;
  }
}

/* Hero final: painel e fotografia independentes */
.hero-inner {
  display: grid;
  grid-template-columns: 47% 53%;
  height: 570px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  inset: auto;
  z-index: 2;
  display: flex;
  width: auto;
  height: 100%;
  padding: clamp(48px, 5vw, 72px);
  background: #20201d;
  backdrop-filter: none;
  flex-direction: column;
  justify-content: center;
}

.hero-visual {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
}

.hero-visual::after {
  display: none;
}

.hero-visual img {
  object-position: 50% center;
  filter: none;
}

@media (max-width: 760px) {
  .hero-inner {
    display: flex;
    height: auto;
    overflow: visible;
    flex-direction: column;
  }

  .hero-content {
    order: 1;
    width: 100%;
    height: auto;
    padding: 46px 30px 42px;
  }

  .hero-visual {
    order: 2;
    height: min(68vw, 330px);
  }

  .hero-visual img { object-position: 58% center; }
}

/* Ritmo editorial mais compacto */
.projects-preview { padding-top: 82px; padding-bottom: 92px; }
.services-section { padding-top: 86px; padding-bottom: 92px; }
.service-card { min-height: 245px; }
.service-card h3 { margin-top: 48px; }
.systems-section { padding-top: 70px; padding-bottom: 70px; }
.process-section { padding-top: 88px; padding-bottom: 92px; }
.process-list li { padding-bottom: 25px; }
.process-list li > div { padding-bottom: 21px; }
.process-list .process-decision { margin-bottom: 25px; }
.reasons-section { padding-top: 90px; padding-bottom: 90px; }
.quote-section { margin-bottom: 88px; }

@media (max-width: 620px) {
  .projects-preview, .services-section, .reasons-section { padding-top: 58px; padding-bottom: 62px; }
  .section-heading { margin-bottom: 28px; }
  .service-grid { margin-top: 38px; }
  .service-card, .service-card:nth-child(3) { min-height: 0; padding: 24px 20px 28px; }
  .service-card h3 { margin: 30px 0 13px; }
  .systems-section { padding-top: 56px; padding-bottom: 56px; }
  .systems-inner { gap: 34px; }
  .systems-note { margin-top: -18px; }
  .process-section { padding-top: 64px; padding-bottom: 68px; }
  .process-inner { gap: 38px; }
  .process-list li { padding-bottom: 20px; }
  .process-list li > div { padding-bottom: 20px; }
  .reasons-grid article { min-height: 0; padding: 25px 22px; }
  .reasons-grid p { margin-top: 17px; }
  .quote-section { margin-bottom: 58px; padding-top: 42px; padding-bottom: 42px; }
  .site-footer { padding-top: 52px; }
  .legal-content { width: calc(100% - 32px); padding: 62px 0 90px; }
}
