:root {
  --ivory: #f4f0e8;
  --ivory-soft: #eee8dd;
  --olive: #263a35;
  --graphite: #292927;
  --gold: #a98c5b;
  --gold-light: #c7ad7f;
  --muted: #6a6962;
  --line: rgba(38, 58, 53, 0.17);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--ivory); }

body {
  margin: 0;
  color: var(--graphite);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--ivory); background: var(--olive); }

.container { width: min(1120px, calc(100% - 80px)); margin: 0 auto; }
.section-pad { padding: 94px 0; }
.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; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 9px 13px;
  color: var(--ivory);
  background: var(--olive);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(244, 240, 232, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled { background: rgba(244, 240, 232, 0.97); border-color: var(--line); box-shadow: 0 8px 28px rgba(38, 58, 53, 0.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 30px; }

.brand, .footer-brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark-generated { display: block; width: 58px; height: 58px; object-fit: contain; }
.brand-copy-generated, .footer-copy-generated { display: flex; flex-direction: column; gap: 0; }
.brand-copy-generated strong { color: var(--olive); font-family: var(--serif); font-size: 16px; font-weight: 500; line-height: 1.2; }
.brand-copy-generated small { color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: 0.08em; line-height: 1.5; text-transform: uppercase; }
.brand-seal {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 39px;
  height: 39px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  letter-spacing: -0.14em;
  line-height: 1;
}
.brand-copy, .footer-brand > span:last-child { display: flex; flex-direction: column; gap: 0; }
.brand-copy strong, .footer-brand strong { color: var(--olive); font-family: var(--serif); font-size: 16px; font-weight: 500; line-height: 1.2; }
.brand-copy small, .footer-brand small { color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: 0.08em; line-height: 1.5; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 27px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; }
.site-nav > a:not(.nav-cta) { position: relative; padding: 7px 0; transition: color 180ms ease; }
.site-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 1px; left: 0; height: 1px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 200ms ease; }
.site-nav > a:not(.nav-cta):hover, .site-nav > a:not(.nav-cta).is-active { color: var(--olive); }
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a:not(.nav-cta).is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; align-items: center; gap: 9px; padding: 11px 15px; color: var(--ivory); background: var(--olive); border: 1px solid var(--olive); font-size: 9px; letter-spacing: 0.1em; transition: color 180ms ease, background 180ms ease, transform 180ms ease; }
.nav-cta:hover { color: var(--olive); background: transparent; transform: translateY(-2px); }
.nav-cta span, .button span { font-size: 15px; font-weight: 400; line-height: 1; }

.menu-toggle { display: none; width: 40px; height: 40px; padding: 9px; background: transparent; border: 1px solid var(--line); cursor: pointer; }
.menu-line { display: block; width: 19px; height: 1px; margin: 5px auto; background: var(--olive); transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] .menu-line:first-of-type { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-line:last-of-type { transform: translateY(-3px) rotate(-45deg); }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; color: var(--gold); font-family: var(--mono); font-size: 9px; letter-spacing: 0.15em; line-height: 1.4; text-transform: uppercase; }
.eyebrow-light { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { color: var(--olive); font-family: var(--serif); font-weight: 400; letter-spacing: -0.035em; }
h1 { max-width: 680px; margin-bottom: 24px; font-size: clamp(48px, 5vw, 70px); line-height: 1.04; }
h2 { margin-bottom: 22px; font-size: clamp(39px, 3.8vw, 54px); line-height: 1.07; }
h1 em, h2 em { color: var(--gold); font-style: italic; }

.hero { position: relative; min-height: 690px; padding: 155px 0 82px; overflow: hidden; }
.hero::before { position: absolute; top: 0; right: 9%; width: 1px; height: 100%; background: rgba(169, 140, 91, 0.17); content: ""; }
.hero-grid { display: grid; align-items: center; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr); gap: 9%; }
.hero-copy { position: relative; z-index: 1; }
.hero-brand-lockup { display: none; }
.hero-monogram { position: absolute; top: -20px; right: 8%; width: 76px; height: auto; opacity: 0.68; pointer-events: none; }
.hero-intro { max-width: 535px; margin-bottom: 30px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 49px; padding: 12px 19px; border: 1px solid transparent; font-size: 9px; font-weight: 600; letter-spacing: 0.11em; line-height: 1.2; text-align: center; text-transform: uppercase; transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease; }
.button-primary { color: var(--ivory); background: var(--olive); border-color: var(--olive); box-shadow: 0 8px 16px rgba(38, 58, 53, 0.1); }
.button-primary:hover { color: var(--olive); background: transparent; box-shadow: none; transform: translateY(-2px); }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 7px 0; color: var(--olive); font-size: 9px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }
.text-link span { color: var(--gold); font-size: 16px; transition: transform 180ms ease; }
.text-link:hover { color: var(--gold); }
.text-link:hover span { transform: translateY(3px); }
.hero-signature { display: flex; align-items: center; gap: 9px; margin-top: 45px; color: var(--muted); font-family: var(--serif); font-size: 13px; font-style: italic; }
.hero-signature span { color: var(--gold); font-family: var(--sans); font-size: 9px; font-style: normal; }

.hero-visual { width: 100%; max-width: 410px; margin-left: auto; }
.portrait-frame { position: relative; aspect-ratio: 0.84; margin: 0; padding: 13px; overflow: hidden; background: var(--ivory-soft); border: 1px solid rgba(169, 140, 91, 0.6); }
.portrait-frame::before { position: absolute; top: 22px; right: -13px; bottom: -13px; left: 22px; border: 1px solid rgba(38, 58, 53, 0.17); content: ""; pointer-events: none; }
.portrait-frame::after { position: absolute; z-index: 1; right: 13px; bottom: 13px; left: 13px; height: 29%; background: rgba(38, 58, 53, 0.38); content: ""; pointer-events: none; }
.portrait-photo { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 48% 22%; filter: saturate(0.72) contrast(0.96); }
.portrait-frame figcaption { position: absolute; z-index: 2; right: 26px; bottom: 23px; left: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--ivory); font-family: var(--mono); font-size: 7px; letter-spacing: 0.1em; line-height: 1.4; text-transform: uppercase; }
.portrait-frame figcaption i { width: 25px; height: 1px; background: var(--gold-light); }
.portrait-frame figcaption small { flex-basis: 100%; color: rgba(244, 240, 232, 0.76); font-family: var(--serif); font-size: 11px; font-style: italic; letter-spacing: 0; text-transform: none; }
.frame-corner { position: absolute; z-index: 3; width: 17px; height: 17px; border-color: var(--gold); }
.frame-corner-top { top: 6px; right: 6px; border-top: 1px solid; border-right: 1px solid; }
.frame-corner-bottom { bottom: 6px; left: 6px; border-bottom: 1px solid; border-left: 1px solid; }
.visual-meta { position: relative; z-index: 2; display: flex; justify-content: space-between; padding-top: 14px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.09em; text-transform: uppercase; }
.visual-meta span:last-child { color: var(--gold); }

.profile { background: var(--ivory-soft); }
.profile-grid { display: grid; grid-template-columns: 0.84fr 1.16fr; gap: 11%; }
.profile-story { max-width: 480px; }
.profile-story > p:not(.eyebrow), .experience-intro > p:not(.audience-note) { color: var(--muted); font-size: 13px; line-height: 1.85; }
.profile-story > p:not(.eyebrow) { margin-bottom: 15px; }
.services-compact h2 { margin-bottom: 26px; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 36px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.service-index { color: var(--gold); font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; }
.service-row h3 { margin: 0 0 3px; color: var(--olive); font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.25; }
.service-row p { max-width: 440px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.experience { color: var(--ivory); background: var(--olive); }
.experience-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; column-gap: 10%; row-gap: 52px; }
.experience h2 { color: var(--ivory); }
.experience-intro > p:not(.audience-note) { color: rgba(244, 240, 232, 0.7); }
.audience-note { max-width: 390px; margin-top: 27px; color: var(--gold-light); font-family: var(--mono); font-size: 8px; letter-spacing: 0.07em; line-height: 1.8; text-transform: uppercase; }
.audience-note i { padding: 0 3px; color: var(--ivory); font-style: normal; }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 34px; }
.pillar { padding: 17px 0 19px; border-top: 1px solid rgba(199, 173, 127, 0.44); }
.pillar > span { display: block; margin-bottom: 10px; color: var(--gold-light); font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; }
.pillar h3 { margin: 0 0 5px; color: var(--ivory); font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.2; }
.pillar p { margin: 0; color: rgba(244, 240, 232, 0.65); font-size: 11px; line-height: 1.65; }
.process-compact { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(199, 173, 127, 0.44); }
.process-compact .eyebrow { margin-bottom: 19px; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-step { display: grid; grid-template-columns: 34px 1fr; column-gap: 13px; align-items: start; }
.process-step > span { color: var(--gold-light); font-family: var(--serif); font-size: 29px; line-height: 1; }
.process-step strong { display: block; padding-top: 2px; color: var(--ivory); font-family: var(--serif); font-size: 17px; font-weight: 500; line-height: 1.3; }
.process-step small { grid-column: 2; display: block; margin-top: 6px; color: rgba(244, 240, 232, 0.63); font-size: 10px; line-height: 1.6; }

.contact { background: var(--ivory); }
.contact-card { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 7%; padding: 62px 8%; overflow: hidden; background: var(--ivory-soft); border: 1px solid rgba(169, 140, 91, 0.5); }
.contact-card::before { position: absolute; right: -10%; bottom: -95%; width: 47%; aspect-ratio: 1; border: 1px solid rgba(169, 140, 91, 0.25); border-radius: 50%; content: ""; }
.contact-copy, .contact-action { position: relative; z-index: 1; }
.contact-copy h2 { max-width: 580px; margin-bottom: 16px; }
.contact-copy > p:last-child { max-width: 420px; margin: 0; color: var(--muted); font-size: 13px; }
.contact-action { display: flex; align-items: flex-start; flex-direction: column; gap: 16px; }
.button-large { min-height: 56px; padding: 14px 19px; }
.contact-details { display: flex; flex-direction: column; gap: 3px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.04em; }
.contact-details a:hover { color: var(--gold); }
.contact-ornament { position: absolute; top: -4px; right: 2px; width: 125px; height: 125px; object-fit: contain; opacity: 0.42; pointer-events: none; }

.site-footer { padding: 34px 0 22px; color: rgba(244, 240, 232, 0.72); background: var(--olive); }
.footer-main { display: flex; align-items: center; justify-content: space-between; padding-bottom: 28px; border-bottom: 1px solid rgba(199, 173, 127, 0.35); }
.footer-brand { color: var(--ivory); gap: 0; }
.footer-mark-generated { display: block; width: 76px; height: 76px; object-fit: contain; }
.footer-links { display: flex; gap: 25px; color: var(--ivory); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold-light); }
.footer-links span { color: var(--gold-light); font-family: var(--sans); font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 15px; color: rgba(244, 240, 232, 0.42); font-family: var(--mono); font-size: 7px; letter-spacing: 0.07em; text-transform: uppercase; }
.footer-bottom i { padding: 0 4px; color: var(--gold-light); font-style: normal; }

.floating-whatsapp { position: fixed; z-index: 40; right: 21px; bottom: 21px; display: inline-flex; align-items: center; gap: 8px; padding: 11px 14px; color: var(--ivory); background: var(--olive); border: 1px solid rgba(199, 173, 127, 0.65); box-shadow: 0 9px 22px rgba(38, 58, 53, 0.2); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.floating-whatsapp:hover { color: var(--olive); background: var(--ivory); transform: translateY(-2px); }
.floating-whatsapp svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.35; }

.js .reveal { opacity: 0; transform: translateY(17px); transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 90ms !important; }

@media (max-width: 980px) {
  .container { width: min(100% - 56px, 820px); }
  .site-nav { gap: 18px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr); gap: 7%; }
  .profile-grid { gap: 7%; }
  .experience-grid { column-gap: 7%; }
  .contact-card { padding-right: 6%; padding-left: 6%; }
}

@media (max-width: 760px) {
  .section-pad { padding: 76px 0; }
  .header-inner { min-height: 70px; }
  .menu-toggle { position: relative; z-index: 2; display: block; }
  .site-nav { position: fixed; top: 0; right: 0; bottom: 0; left: 0; display: flex; align-items: flex-start; flex-direction: column; gap: 5px; padding: 108px 28px 35px; color: var(--olive); background: var(--ivory); font-family: var(--serif); font-size: 27px; font-weight: 400; letter-spacing: -0.02em; text-transform: none; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity 200ms ease, transform 200ms ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.nav-cta) { padding: 6px 0; }
  .nav-cta { margin-top: 18px; padding: 14px 17px; font-family: var(--sans); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
  .hero { min-height: 0; padding: 122px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 640px; }
  h1 { font-size: clamp(43px, 11.8vw, 60px); }
  .hero-visual { width: min(100%, 370px); margin: 0 auto; }
  .profile-grid { grid-template-columns: 1fr; gap: 58px; }
  .profile-story { max-width: 620px; }
  .experience-grid { grid-template-columns: 1fr; row-gap: 40px; }
  .pillars { gap: 0 27px; }
  .process-compact { grid-column: auto; }
  .contact-card { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .contact-action { align-items: flex-start; }
}

/* Desktop — composição única inspirada na referência, sem afetar mobile. */
@media (min-width: 761px) {
  body { background: var(--reference-card); }
  .site-header,
  main { width: 100%; max-width: none; margin: 0; border: 0; border-radius: 0; box-shadow: none; }

  .site-header { position: relative; z-index: 70; height: 106px; background: var(--reference-card); }
  .site-header > .header-inner { display: flex; align-items: center; width: 100%; height: 100%; min-height: 0; padding: 0 6.8%; }
  .site-header .brand,
  .site-header .menu-toggle { display: none !important; }
  .site-header .site-nav { position: static; display: flex !important; align-items: center; flex-direction: row; gap: 38px; width: 100%; padding: 0; color: var(--graphite); background: transparent; font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: 0; opacity: 1; pointer-events: auto; text-transform: none; transform: none; }
  .site-header .site-nav > a:not(.nav-cta) { display: inline-flex !important; padding: 8px 0; }
  .site-header .site-nav > a:first-child { color: var(--olive); border-bottom: 1px solid var(--gold); }
  .site-header .site-nav .nav-cta { display: inline-flex; align-items: center; gap: 13px; min-height: 46px; margin: 0 0 0 auto; padding: 12px 25px; color: #dcc188; background: var(--olive); border-radius: 9px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }

  main { overflow: hidden; background: var(--reference-card); }
  .one-page-hero { height: 600px; min-height: 600px; padding: 28px 6.8% 0; overflow: hidden; background: var(--reference-card); }
  .one-page-hero > .container { width: 100%; max-width: none; margin: 0; }
  .one-page-hero .hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 520px; width: 100%; height: 100%; }
  .one-page-hero .hero-copy { width: 100%; max-width: 545px; padding-top: 127px; }
  .one-page-hero .hero-monogram { position: absolute; top: 18px; left: 0; right: auto; display: block; width: 98px; height: 98px; opacity: 1; mix-blend-mode: multiply; }
  .one-page-hero h1 { max-width: 500px; margin: 0 0 20px; font-size: clamp(42px, 3.7vw, 58px); line-height: 1.08; }
  .one-page-hero .hero-intro { max-width: 455px; margin: 0 0 25px; font-size: 15px; line-height: 1.7; }
  .one-page-hero .hero-actions .button { width: 330px; min-height: 57px; padding: 12px 25px; border-radius: 9px; font-size: 13px; letter-spacing: 0.13em; }
  .one-page-hero .hero-actions .button span { font-size: 25px; }
  .one-page-hero .hero-visual { position: relative; z-index: 2; top: 0; right: auto; width: 520px; height: 600px; margin: 0; overflow: visible; }
  .one-page-hero .portrait-frame { position: absolute; top: 0; right: 0; width: 520px; height: 600px; aspect-ratio: auto; overflow: hidden; clip-path: none; border: 1px solid rgba(169, 140, 91, 0.72); border-radius: 145px 145px 0 0; background: transparent; }
  .one-page-hero .portrait-frame::after { display: none; }
  .one-page-hero .portrait-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }

  .profile { display: block; height: 295px; padding: 0 !important; overflow: hidden; border-radius: 38px 38px 0 0; background: var(--reference-panel); }
  .profile-grid { display: block; width: 100%; height: 100%; padding: 24px 8% 16px; background: var(--reference-panel); border-radius: 38px 38px 0 0; }
  .profile-story { display: none; }
  .services-compact { width: 100%; }
  .services-compact > .eyebrow { display: none; }
  .services-compact h2 { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 0 0 20px; font-size: 38px; line-height: 1; }
  .services-compact h2::before,
  .services-compact h2::after { width: 86px; height: 1px; background: var(--gold); content: ""; }
  .service-list { display: grid; grid-template-columns: repeat(4, 1fr); border: 0; }
  .service-row { display: flex; align-items: center; flex-direction: column; justify-content: flex-start; gap: 12px; min-height: 116px; padding: 0 24px; color: var(--graphite); background: transparent; border: 0; border-right: 1px solid rgba(169, 140, 91, 0.34); text-align: center; }
  .service-row:last-child { border-right: 0; }
  .service-row:hover { background: transparent; }
  .service-row .service-index { display: none; }
  .service-row > div { display: contents; }
  .service-row h3 { order: 2; margin: 0; font-family: var(--sans); font-size: 15px; font-weight: 500; line-height: 1.35; }
  .service-row p,
  .service-row::after { display: none; }
  .service-row .service-icon { order: 1; width: 58px; height: 58px; padding: 14px; color: var(--gold); border: 1px solid var(--gold); border-radius: 50%; stroke-width: 1.45; }

  .experience,
  .site-footer,
  .floating-whatsapp { display: none !important; }
  .contact { display: block; height: 166px; padding: 12px 8% 18px !important; background: var(--reference-panel); }
  .contact-card { display: flex !important; align-items: center; justify-content: center; flex-direction: row; gap: 52px; width: 100%; height: 136px; padding: 20px 50px; overflow: hidden; background: transparent; border: 1px solid rgba(169, 140, 91, 0.7); border-radius: 20px; text-align: left; }
  .contact-quote { width: 470px; margin: 0; font-size: 26px; line-height: 1.15; text-align: center; }
  .contact-actions { width: 268px; }
  .contact-card .button-large { width: 268px; min-width: 268px; min-height: 51px; border-radius: 9px; font-size: 12px; letter-spacing: 0.2em; }
  .contact-card .whatsapp-symbol { width: 27px; height: 27px; }

  .hero-brand-lockup { display: flex; align-items: flex-start; flex-direction: column; width: 100%; margin: 0 0 25px; }
  .hero-brand-lockup img { width: 96px; height: 96px; margin: 0 0 7px; object-fit: contain; mix-blend-mode: multiply; }
  .hero-brand-lockup strong { display: block; color: var(--olive); font-family: var(--serif); font-size: clamp(40px, 3.6vw, 54px); font-weight: 400; letter-spacing: -0.045em; line-height: 0.92; text-transform: uppercase; }
  .hero-brand-lockup small { position: relative; display: block; width: 345px; margin-top: 22px; padding-top: 18px; color: var(--graphite); font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.22em; line-height: 1.2; text-transform: uppercase; }
  .hero-brand-lockup small::before { position: absolute; top: 0; left: 0; width: 345px; height: 1px; background: var(--gold); content: ""; }
  .hero-brand-lockup small::after { position: absolute; top: -3px; left: 166px; width: 8px; height: 8px; background: var(--gold); content: ""; transform: rotate(45deg); }
  .one-page-hero .hero-copy { padding-top: 0; }
  .one-page-hero .hero-monogram { display: none; }
  .one-page-hero h1 { max-width: 600px; margin-bottom: 19px; font-size: 45px; }
  .one-page-hero .hero-intro { max-width: 470px; margin-bottom: 24px; }
}

/* Exact composition from the approved reference */
:root {
  --reference-page: #f5f1e9;
  --reference-card: #f5f1e9;
  --reference-panel: #fbf9f5;
}

html,
body {
  background: var(--reference-page);
}

body {
  min-width: 320px;
}

.site-header,
main {
  width: min(calc(100% - 190px), 750px);
  border-color: rgba(255, 255, 255, 0.88);
  background: var(--reference-card);
}

.site-header {
  height: 420px;
  margin-top: 36px;
  border-radius: 64px 64px 0 0;
  box-shadow: 0 -12px 38px rgba(38, 58, 53, 0.06);
}

.site-header.is-scrolled {
  background: var(--reference-card);
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 -12px 38px rgba(38, 58, 53, 0.06);
}

.header-inner {
  min-height: 0;
  height: 100%;
  padding: 62px 55px 18px;
}

.brand {
  align-items: flex-start;
  gap: 13px;
}

.brand-mark-generated {
  width: 138px;
  height: 138px;
  margin-left: 65px;
  clip-path: inset(18%);
  transform: scale(1.56);
  transform-origin: center;
}

.brand-copy-generated {
  padding-top: 0;
}

.brand-copy-generated::before {
  top: 138px;
  width: 278px;
  height: 1px;
  background: rgba(169, 140, 91, 0.72);
}

.brand-copy-generated::after {
  top: 134px;
  left: 134px;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.brand-copy-generated strong {
  color: var(--olive);
  font-size: 51px;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}

.brand-copy-generated small {
  margin-top: 54px;
  color: var(--graphite);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  white-space: nowrap;
}

main {
  margin-bottom: 35px;
  overflow: visible;
  border-radius: 0 0 64px 64px;
  box-shadow: 0 22px 46px rgba(38, 58, 53, 0.1);
}

.one-page-hero {
  position: relative;
  z-index: 2;
  min-height: 400px;
  padding: 24px 0 52px 30px;
  overflow: visible;
}

.one-page-hero::before {
  display: none;
}

.one-page-hero .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 405px 315px;
  gap: 0;
  width: 720px;
}

.one-page-hero .hero-copy {
  position: relative;
  z-index: 3;
  width: 405px;
}

.one-page-hero h1 {
  max-width: none;
  margin: 0 0 25px;
  color: var(--olive);
  font-size: 47px;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.one-page-hero h1 em {
  color: var(--olive);
  font-weight: 400;
}

.one-page-hero .hero-intro {
  max-width: 390px;
  margin: 0 0 35px;
  color: #464641;
  font-size: 17px;
  line-height: 1.75;
}

.one-page-hero .hero-actions .button {
  justify-content: space-between;
  width: 357px;
  min-height: 72px;
  padding: 16px 31px 16px 45px;
  border-radius: 14px;
  color: #dcc188;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.one-page-hero .hero-actions .button span {
  color: #dcc188;
  font-family: var(--serif);
  font-size: 32px;
}

.one-page-hero .hero-signature,
.hero-contact {
  display: none;
}

.one-page-hero .hero-visual {
  position: absolute;
  z-index: 1;
  top: -398px;
  right: 0;
  width: 315px;
  max-width: none;
  height: 798px;
  margin: 0;
  overflow: hidden;
}

.visual-arch {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -5px;
  width: 320px;
  height: 724px;
  border: 1px solid rgba(169, 140, 91, 0.85);
  border-radius: 160px 160px 40px 40px;
}

.visual-arch::after {
  position: absolute;
  inset: 8px 7px -8px 8px;
  border: 1px solid rgba(169, 140, 91, 0.5);
  border-radius: inherit;
  content: "";
}

.one-page-hero .portrait-frame {
  position: absolute;
  z-index: 1;
  top: 92px;
  right: 17px;
  width: 236px;
  height: 382px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 118px 118px 42px 42px;
  background: #ddd4c5;
  box-shadow: none;
}

.one-page-hero .portrait-frame::before,
.one-page-hero .portrait-frame::after,
.one-page-hero .frame-corner {
  display: none;
}

.one-page-hero .portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.55) sepia(0.12) contrast(0.92);
  opacity: 0.82;
}

.desk-scene {
  position: absolute;
  z-index: 2;
  right: -9px;
  bottom: 0;
  width: 305px;
  height: 270px;
  background: linear-gradient(to top, rgba(220, 211, 196, 0.96), rgba(241, 235, 225, 0.15) 76%);
}

.vase {
  position: absolute;
  left: 32px;
  bottom: 54px;
  width: 67px;
  height: 123px;
  border-radius: 30px 30px 22px 22px;
  background: #ded4c2;
  box-shadow: inset -9px -7px 16px rgba(128, 111, 84, 0.08);
}

.vase::before {
  position: absolute;
  top: -8px;
  left: 21px;
  width: 25px;
  height: 12px;
  border-radius: 50%;
  background: #c9bda9;
  content: "";
}

.vase i,
.vase b {
  position: absolute;
  bottom: 112px;
  left: 34px;
  width: 1px;
  height: 119px;
  background: var(--gold);
  transform: rotate(-11deg);
  transform-origin: bottom;
}

.vase b {
  height: 103px;
  transform: rotate(17deg);
}

.vase i::before,
.vase i::after,
.vase b::before,
.vase b::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.vase i::before { top: 21px; left: -5px; }
.vase i::after { top: 58px; left: 1px; }
.vase b::before { top: 16px; left: 0; }
.vase b::after { top: 50px; left: -6px; }

.book {
  position: absolute;
  right: -10px;
  width: 225px;
  height: 58px;
  border-radius: 3px 0 0 3px;
  transform: rotate(6deg);
  transform-origin: right center;
}

.book-light {
  bottom: 73px;
  background: #d8cebd;
  box-shadow: inset 0 -8px 0 #f1ecdf, 0 8px 15px rgba(57, 52, 42, 0.12);
}

.book-green {
  right: -18px;
  bottom: 17px;
  background: #263a35;
  box-shadow: inset 0 -8px 0 #d9cfbe, 0 6px 12px rgba(57, 52, 42, 0.18);
}

.pen {
  position: absolute;
  z-index: 3;
  right: 43px;
  bottom: 132px;
  width: 125px;
  height: 7px;
  border-radius: 6px;
  background: #b89550;
  box-shadow: 0 2px 3px rgba(55, 44, 25, 0.22);
  transform: rotate(15deg);
}

.profile {
  position: relative;
  z-index: 4;
  height: 520px;
  padding: 0 !important;
  background: var(--reference-panel);
}

.profile-grid {
  width: 100%;
  height: 100%;
  padding: 42px 78px 10px;
  border-radius: 58px 58px 0 0;
  background: var(--reference-panel);
}

.services-compact > .eyebrow {
  display: none;
}

.services-compact h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 17px;
  color: var(--olive);
  font-size: 43px;
  font-weight: 400;
  line-height: 1.15;
}

.services-compact h2::before,
.services-compact h2::after {
  width: 114px;
  color: var(--gold);
  background: linear-gradient(var(--gold), var(--gold)) left center / 86px 1px no-repeat;
  content: "◆";
  font-family: var(--sans);
  font-size: 10px;
  text-align: right;
}

.services-compact h2::after {
  background-position: right center;
  text-align: left;
}

.service-row {
  grid-template-columns: 78px minmax(0, 1fr) 24px;
  gap: 42px;
  min-height: 99px;
  padding: 10px 0;
  border: 0;
  background: linear-gradient(rgba(169, 140, 91, 0.34), rgba(169, 140, 91, 0.34)) 120px bottom / calc(100% - 120px) 1px no-repeat;
}

.service-row:last-child {
  background: none;
}

.service-index {
  width: 78px;
  height: 78px;
  border-color: rgba(169, 140, 91, 0.86);
}

.service-icon {
  width: 33px;
  height: 33px;
  stroke-width: 1.35;
}

.service-row h3 {
  font-size: 22px;
  font-weight: 400;
}

.service-row::after {
  font-size: 38px;
}

.contact {
  position: relative;
  z-index: 4;
  height: 260px;
  padding: 9px 35px 35px !important;
  background: var(--reference-panel);
}

.contact-card {
  position: relative;
  display: flex !important;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  width: 100%;
  height: 216px;
  padding: 24px 30px 22px;
  border: 1px solid rgba(169, 140, 91, 0.68);
  border-radius: 29px;
  box-shadow: inset 0 0 0 5px var(--reference-panel), inset 0 0 0 6px rgba(169, 140, 91, 0.28);
}

.contact-card::before {
  position: absolute;
  top: 17px;
  left: 50%;
  color: #c5a86c;
  content: "◆";
  font-size: 10px;
  transform: translateX(-50%);
}

.contact-quote {
  margin-top: 10px;
  font-size: 33px;
  line-height: 1.17;
}

.contact-card .button-large {
  width: 440px;
  min-width: 440px;
  min-height: 67px;
  justify-content: center;
  gap: 27px;
  padding: 13px 24px;
  border-radius: 15px;
  color: #dcc188;
  font-size: 14px;
  letter-spacing: 0.25em;
}

.contact-card .whatsapp-symbol {
  width: 34px;
  height: 34px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  border: 0;
}

.contact-ornament {
  display: none;
}

@media (max-width: 760px) {
  .site-header,
  main {
    width: calc(100% - 28px);
  }

  .site-header {
    height: 254px;
    margin-top: 14px;
    border-radius: 38px 38px 0 0;
  }

  .header-inner {
    padding: 26px 25px 10px;
  }

  .brand-mark-generated {
    width: 88px;
    height: 88px;
    margin-left: 40px;
  }

  .brand-copy-generated strong {
    font-size: 31px;
  }

  .brand-copy-generated::before {
    top: 83px;
    width: 172px;
  }

  .brand-copy-generated::after {
    top: 80px;
    left: 82px;
    width: 7px;
    height: 7px;
  }

  .brand-copy-generated small {
    margin-top: 34px;
    font-size: 6px;
    letter-spacing: 0.18em;
  }

  main {
    margin-bottom: 14px;
    border-radius: 0 0 38px 38px;
  }

  .one-page-hero {
    min-height: 318px;
    padding: 19px 0 31px 24px;
  }

  .one-page-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) 113px;
    width: 100%;
  }

  .one-page-hero .hero-copy {
    width: auto;
  }

  .one-page-hero h1 {
    margin-bottom: 17px;
    font-size: clamp(28px, 8.6vw, 36px);
    line-height: 1.02;
  }

  .one-page-hero .hero-intro {
    max-width: 25ch;
    margin-bottom: 20px;
    font-size: 10px;
    line-height: 1.55;
  }

  .one-page-hero .hero-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px 10px 16px;
    border-radius: 9px;
    font-size: 6.5px;
  }

  .one-page-hero .hero-actions .button span {
    font-size: 21px;
  }

  .one-page-hero .hero-visual {
    top: -250px;
    right: 0;
    width: 113px;
    height: 568px;
  }

  .visual-arch {
    top: 24px;
    right: -15px;
    width: 150px;
    height: 340px;
    border-radius: 75px 75px 22px 22px;
  }

  .one-page-hero .portrait-frame {
    top: 106px;
    right: 9px;
    width: 94px;
    height: 164px;
    border-radius: 47px 47px 14px 14px;
  }

  .desk-scene {
    right: -11px;
    bottom: 0;
    width: 128px;
    height: 194px;
  }

  .vase {
    left: 9px;
    bottom: 45px;
    width: 30px;
    height: 63px;
  }

  .vase::before {
    left: 9px;
    width: 12px;
  }

  .vase i,
  .vase b {
    bottom: 58px;
    left: 15px;
    height: 65px;
  }

  .vase b { height: 55px; }

  .book {
    width: 103px;
    height: 27px;
  }

  .book-light { bottom: 48px; }
  .book-green { bottom: 21px; }
  .pen { right: 9px; bottom: 77px; width: 58px; height: 4px; }

  .profile {
    height: 414px;
  }

  .profile-grid {
    padding: 27px 20px 8px;
    border-radius: 34px 34px 0 0;
  }

  .services-compact h2 {
    gap: 8px;
    margin-bottom: 9px;
    font-size: 31px;
  }

  .services-compact h2::before,
  .services-compact h2::after {
    width: 50px;
    background-size: 36px 1px;
    font-size: 7px;
  }

  .service-row {
    grid-template-columns: 52px minmax(0, 1fr) 16px;
    gap: 14px;
    min-height: 83px;
    padding: 7px 0;
    background-position: 66px bottom;
    background-size: calc(100% - 66px) 1px;
  }

  .service-index {
    width: 52px;
    height: 52px;
  }

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

  .service-row h3 {
    font-size: 13px;
  }

  .service-row::after {
    font-size: 28px;
  }

  .contact {
    height: 225px;
    padding: 6px 12px 25px !important;
  }

  .contact-card {
    height: 194px;
    gap: 18px;
    padding: 25px 13px 18px;
    border-radius: 22px;
  }

  .contact-quote {
    font-size: 22px;
  }

  .contact-card .button-large {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    gap: 17px;
    border-radius: 10px;
    font-size: 8px;
  }

  .contact-card .whatsapp-symbol {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 520px) {
  body { font-size: 14px; }
  .container { width: min(100% - 32px, 420px); }
  .profile, .experience { display: none; }
  .site-nav > a[href="#sobre"],
  .site-nav > a[href="#servicos"],
  .site-nav > a[href="#como-funciona"] { display: none; }
  .header-inner { min-height: 70px; gap: 12px; }
  .brand { min-width: 0; gap: 7px; }
  .brand-mark-generated { width: 43px; height: 43px; }
  .brand-copy-generated { min-width: 0; }
  .brand-copy-generated strong { font-size: 14px; white-space: nowrap; }
  .brand-copy-generated small { max-width: 150px; overflow: hidden; font-size: 5.5px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
  .menu-toggle { display: none; }
  .site-nav { position: static; display: flex; align-items: center; flex-direction: row; gap: 0; padding: 0; color: var(--olive); background: transparent; font-family: var(--sans); font-size: 8px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 1; pointer-events: auto; transform: none; transition: none; }
  .site-nav > a[href="#contato"] { display: none; }
  .site-nav > a.nav-cta { display: inline-flex; margin: 0; padding: 10px 10px; font-size: 7px; white-space: nowrap; }
  .site-nav > a.nav-cta span { font-size: 13px; }
  .hero { min-height: calc(100svh - 70px); padding: 88px 0 42px; background: var(--ivory); }
  .hero::before { top: 70px; right: 18px; height: 47%; background: rgba(169, 140, 91, 0.25); }
  .hero-grid { display: flex; align-items: stretch; flex-direction: column; gap: 25px; }
  .hero-copy { max-width: 100%; }
  .hero-monogram { top: -17px; right: 0; width: 45px; opacity: 0.58; }
  h1 { max-width: none; margin-bottom: 18px; font-size: clamp(43px, 11.5vw, 50px); line-height: 0.99; }
  .hero-intro { max-width: 31ch; margin-bottom: 21px; font-size: 14px; line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 0; }
  .hero-actions .button { width: fit-content; min-height: 52px; padding-right: 17px; padding-left: 17px; }
  .hero-actions .text-link { display: none; }
  .hero-signature { display: none; }
  .hero-visual { width: 100%; max-width: none; margin: 0; }
  .portrait-frame { aspect-ratio: 0.92; padding: 8px; }
  .portrait-frame::before { top: 15px; right: -9px; bottom: -9px; left: 15px; }
  .portrait-frame::after { right: 8px; bottom: 8px; left: 8px; height: 21%; background: rgba(38, 58, 53, 0.48); }
  .portrait-photo { object-position: 50% 17%; }
  .portrait-frame figcaption { right: 20px; bottom: 17px; left: 20px; font-size: 7px; }
  .portrait-frame figcaption small { font-size: 12px; }
  .visual-meta { display: none; }
  .contact { padding: 0; background: var(--olive); }
  .contact-card { display: block; width: 100%; padding: 72px 16px 76px; overflow: hidden; background: var(--olive); border: 0; }
  .contact-card::before { right: -33%; bottom: -24%; width: 95%; border-color: rgba(199, 173, 127, 0.3); }
  .contact-copy, .contact-action { position: relative; z-index: 1; }
  .contact-copy .eyebrow { color: var(--gold-light); margin-bottom: 20px; }
  .contact-copy h2 { max-width: 9ch; margin-bottom: 20px; color: var(--ivory); font-size: clamp(45px, 13vw, 56px); line-height: 0.99; }
  .contact-copy h2 em { color: var(--gold-light); }
  .contact-copy > p:last-child { max-width: 27ch; color: rgba(244, 240, 232, 0.72); font-size: 14px; line-height: 1.6; }
  .contact-action { gap: 19px; margin-top: 31px; }
  .button-large { width: 100%; min-height: 58px; padding: 14px 13px; color: var(--olive); background: var(--ivory); border-color: var(--ivory); font-size: 8px; }
  .contact-details { color: rgba(244, 240, 232, 0.6); font-size: 8px; line-height: 1.5; }
  .contact-ornament { top: auto; right: -40px; bottom: -33px; width: 185px; opacity: 0.16; }
  .site-footer { padding: 22px 0 17px; }
  .footer-main { align-items: center; flex-direction: row; gap: 16px; padding-bottom: 18px; }
  .footer-mark-generated { width: 45px; height: 45px; }
  .footer-links { flex-wrap: wrap; justify-content: flex-end; gap: 9px 14px; font-size: 7px; }
  .footer-bottom { gap: 7px; line-height: 1.5; font-size: 6px; }
  .footer-bottom span:first-child { display: none; }
  .floating-whatsapp { right: 12px; bottom: 12px; padding: 11px; }
  .floating-whatsapp span { display: none; }
}

/* Single-page composition */
.profile, .experience, .contact, .site-footer, .floating-whatsapp { display: none !important; }
.one-page-hero { display: flex; align-items: center; min-height: calc(100svh - 78px); padding: 92px 0 48px; }
.one-page-hero::before { top: 0; right: 33%; height: 100%; background: rgba(169, 140, 91, 0.2); }
.one-page-hero .hero-grid { grid-template-columns: minmax(0, 1fr) 280px; gap: 10%; row-gap: 30px; align-items: center; }
.one-page-hero .hero-monogram { top: -17px; right: 0; width: 66px; opacity: 0.6; }
.one-page-hero h1 { max-width: 650px; margin-bottom: 20px; font-size: clamp(47px, 5.2vw, 68px); }
.one-page-hero .hero-intro { max-width: 480px; margin-bottom: 25px; font-size: 14px; line-height: 1.75; }
.one-page-hero .hero-signature { margin-top: 29px; font-size: 12px; }
.one-page-hero .hero-visual { max-width: 280px; margin: 0 auto; }
.one-page-hero .portrait-frame { aspect-ratio: 0.8; padding: 10px; }
.one-page-hero .portrait-frame figcaption, .one-page-hero .visual-meta { display: none; }
.hero-contact { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; gap: 22px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-contact a { color: var(--olive); transition: color 180ms ease; }
.hero-contact a:hover { color: var(--gold); }

@media (max-width: 760px) {
  .one-page-hero { min-height: calc(100svh - 70px); padding: 88px 0 34px; }
  .one-page-hero::before { top: 0; right: 19px; height: 70%; }
  .one-page-hero .hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 112px; column-gap: 15px; row-gap: 25px; align-items: start; }
  .one-page-hero .hero-copy { grid-column: 1; min-width: 0; }
  .one-page-hero .hero-monogram { top: -13px; right: 0; width: 39px; }
  .one-page-hero h1 { max-width: 10ch; margin-bottom: 16px; font-size: clamp(37px, 10.5vw, 43px); line-height: 1; }
  .one-page-hero .hero-intro { max-width: 26ch; margin-bottom: 20px; font-size: 12px; line-height: 1.55; }
  .one-page-hero .hero-actions .button { min-height: 48px; padding: 10px 12px; font-size: 7px; }
  .one-page-hero .hero-signature { display: none; }
  .one-page-hero .hero-visual { grid-column: 2; grid-row: 1; width: 100%; max-width: 112px; margin: 13px 0 0; }
  .one-page-hero .portrait-frame { aspect-ratio: 0.76; padding: 6px; }
  .one-page-hero .portrait-frame::before { top: 11px; right: -6px; bottom: -6px; left: 11px; }
  .one-page-hero .portrait-frame::after { display: none; }
  .hero-contact { grid-column: 1 / -1; align-items: flex-start; flex-direction: column; gap: 7px; padding-top: 15px; font-size: 7px; line-height: 1.4; }
}

@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; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Reference-inspired single landing card */
body { background: #ebe7df; }
body.service-modal-open { overflow: hidden; }
.site-header { position: relative; top: auto; width: min(calc(100% - 72px), 820px); margin: 36px auto 0; background: var(--ivory); border: 1px solid rgba(169, 140, 91, 0.16); border-bottom: 0; border-radius: 58px 58px 0 0; box-shadow: 0 -10px 28px rgba(38, 58, 53, 0.04); }
.site-header.is-scrolled { background: var(--ivory); border-color: rgba(169, 140, 91, 0.16); border-bottom: 0; box-shadow: 0 -10px 28px rgba(38, 58, 53, 0.04); }
.header-inner { min-height: 106px; padding: 15px 54px 10px; }
.brand { gap: 13px; }
.brand-mark-generated { width: 68px; height: 68px; }
.brand-copy-generated strong { font-size: 22px; }
.brand-copy-generated small { font-size: 8px; letter-spacing: 0.12em; }
.site-nav, .menu-toggle { display: none !important; }
main { width: min(calc(100% - 72px), 820px); margin: 0 auto 36px; overflow: hidden; background: var(--ivory); border: 1px solid rgba(169, 140, 91, 0.16); border-top: 0; border-radius: 0 0 58px 58px; box-shadow: 0 18px 35px rgba(38, 58, 53, 0.1); }
.profile, .contact { display: block !important; }
.experience, .site-footer, .floating-whatsapp { display: none !important; }
.one-page-hero { display: block; min-height: 0; padding: 48px 54px 42px; }
.one-page-hero::before { top: 0; right: 37%; height: 100%; background: rgba(169, 140, 91, 0.2); }
.one-page-hero .hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 244px; gap: 11%; row-gap: 28px; align-items: center; }
.one-page-hero .hero-copy { grid-column: 1; }
.one-page-hero .hero-monogram { top: -14px; right: 0; width: 58px; opacity: 0.54; }
.one-page-hero .hero-monogram { display: none; }
.one-page-hero h1 { max-width: 430px; margin-bottom: 23px; font-size: clamp(42px, 5vw, 59px); line-height: 1.03; }
.one-page-hero .hero-intro { max-width: 390px; margin-bottom: 27px; font-size: 13px; line-height: 1.75; }
.one-page-hero .hero-actions { gap: 0; }
.one-page-hero .hero-actions .button { min-height: 55px; padding: 14px 22px; font-size: 10px; letter-spacing: 0.14em; }
.one-page-hero .hero-signature { margin-top: 28px; font-size: 12px; }
.one-page-hero .hero-visual { grid-column: 2; grid-row: 1; width: 100%; max-width: 244px; margin: 0; }
.one-page-hero .portrait-frame { aspect-ratio: 0.72; padding: 9px; border-radius: 130px 130px 18px 18px; }
.one-page-hero .portrait-frame::before { top: 16px; right: -9px; bottom: -9px; left: 16px; border-radius: 130px 130px 18px 18px; }
.one-page-hero .portrait-frame::after { right: 9px; bottom: 9px; left: 9px; height: 23%; border-radius: 0 0 12px 12px; }
.one-page-hero .portrait-photo { object-position: 50% 15%; }
.one-page-hero .portrait-frame figcaption, .one-page-hero .visual-meta { display: none; }
.hero-contact { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid rgba(169, 140, 91, 0.32); font-size: 8px; }
.hero-contact a { color: var(--olive); }
.profile { padding: 0 30px !important; background: transparent; }
.profile-grid { display: block; padding: 45px 48px 27px; background: #faf8f3; border-radius: 45px 45px 0 0; }
.profile-story { display: none; }
.services-compact { display: block; }
.services-compact > .eyebrow { justify-content: center; margin-bottom: 9px; color: var(--gold); }
.services-compact h2 { margin-bottom: 25px; color: var(--olive); font-size: 40px; text-align: center; }
.service-list { border-top: 0; }
.service-row { grid-template-columns: 45px minmax(0, 1fr) 20px; align-items: center; gap: 18px; padding: 17px 0; border-bottom: 1px solid rgba(169, 140, 91, 0.32); }
.service-index { display: grid; place-items: center; width: 42px; height: 42px; color: var(--gold); border: 1px solid var(--gold); border-radius: 50%; font-size: 0; }
.service-index::before { content: "✦"; font-family: var(--serif); font-size: 15px; }
.service-row h3 { margin: 0; font-family: var(--sans); font-size: 17px; font-weight: 500; line-height: 1.3; }
.service-row p { display: none; }
.service-row::after { grid-column: 3; color: var(--gold); content: "›"; font-family: var(--serif); font-size: 32px; font-weight: 300; line-height: 1; }
.contact { padding: 22px 30px 41px !important; background: #faf8f3; }
.contact-card { display: flex !important; align-items: center; justify-content: center; gap: 24px; padding: 35px 28px 31px; overflow: hidden; background: transparent; border: 1px solid rgba(169, 140, 91, 0.55); border-radius: 28px; text-align: center; }
.contact-quote { position: relative; z-index: 1; margin: 0; color: var(--olive); font-family: var(--serif); font-size: clamp(25px, 3vw, 34px); font-style: italic; line-height: 1.15; }
.contact-card .button-large { position: relative; z-index: 1; min-width: 265px; min-height: 54px; padding: 13px 22px; color: var(--ivory); background: var(--olive); border-color: var(--olive); font-size: 10px; letter-spacing: 0.18em; }
.whatsapp-symbol { display: inline-grid; place-items: center; width: 22px; height: 22px; border: 2px solid currentColor; border-radius: 50%; font-size: 16px; line-height: 1; }
.contact-ornament { top: auto; right: -22px; bottom: -44px; width: 150px; opacity: 0.13; }

@media (max-width: 760px) {
  .site-header { width: calc(100% - 32px); margin-top: 16px; border-radius: 35px 35px 0 0; }
  .header-inner { min-height: 75px; padding: 12px 18px 9px; }
  .brand { gap: 8px; }
  .brand-mark-generated { width: 48px; height: 48px; }
  .brand-copy-generated strong { font-size: 15px; }
  .brand-copy-generated small { max-width: 155px; font-size: 5.5px; }
  main { width: calc(100% - 32px); margin-bottom: 16px; border-radius: 0 0 35px 35px; }
  .one-page-hero { padding: 35px 20px 30px; }
  .one-page-hero::before { top: 0; right: 27%; height: 100%; }
  .one-page-hero .hero-grid { grid-template-columns: minmax(0, 1fr) 108px; column-gap: 15px; row-gap: 27px; align-items: start; }
  .one-page-hero .hero-copy { grid-column: 1; min-width: 0; }
  .one-page-hero .hero-monogram { top: -10px; right: 0; width: 35px; }
  .one-page-hero h1 { max-width: 11ch; margin-bottom: 16px; font-size: clamp(33px, 10.5vw, 42px); line-height: 1.02; }
  .one-page-hero .hero-intro { max-width: 25ch; margin-bottom: 19px; font-size: 11px; line-height: 1.55; }
  .one-page-hero .hero-actions .button { min-height: 47px; padding: 10px 11px; font-size: 7px; }
  .one-page-hero .hero-signature { display: none; }
  .one-page-hero .hero-visual { grid-column: 2; grid-row: 1; width: 100%; max-width: 108px; margin: 20px 0 0; }
  .one-page-hero .portrait-frame { aspect-ratio: 0.72; padding: 6px; border-radius: 70px 70px 10px 10px; }
  .one-page-hero .portrait-frame::before { top: 11px; right: -6px; bottom: -6px; left: 11px; border-radius: 70px 70px 10px 10px; }
  .one-page-hero .portrait-frame::after { display: none; }
  .hero-contact { grid-column: 1 / -1; align-items: flex-start; flex-direction: column; gap: 6px; padding-top: 14px; font-size: 6.5px; }
  .profile { padding: 0 12px !important; }
  .profile-grid { padding: 32px 20px 17px; border-radius: 29px 29px 0 0; }
  .services-compact > .eyebrow { margin-bottom: 5px; font-size: 7px; }
  .services-compact h2 { margin-bottom: 19px; font-size: 31px; }
  .service-row { grid-template-columns: 35px minmax(0, 1fr) 15px; gap: 12px; padding: 13px 0; }
  .service-index { width: 34px; height: 34px; }
  .service-index::before { font-size: 12px; }
  .service-row h3 { font-size: 13px; }
  .service-row::after { font-size: 26px; }
  .contact { padding: 15px 12px 25px !important; }
  .contact-card { align-items: center; flex-direction: column; gap: 19px; padding: 28px 13px 25px; border-radius: 21px; }
  .contact-quote { font-size: 23px; }
  .contact-card .button-large { width: 100%; min-width: 0; min-height: 49px; padding: 10px 12px; font-size: 7px; }
  .whatsapp-symbol { width: 19px; height: 19px; font-size: 13px; }
  .contact-ornament { right: -32px; bottom: -40px; width: 125px; }
}

/* Interactive service rows */
.service-row { position: relative; width: 100%; margin: 0; color: inherit; background: transparent; border-top: 0; border-right: 0; border-left: 0; font: inherit; text-align: left; cursor: pointer; transition: background 180ms ease, padding 180ms ease; }
.service-row:hover { background: rgba(169, 140, 91, 0.08); }
.service-row:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.service-row > div { grid-column: 2; grid-row: 1; min-width: 0; }
.service-index { grid-column: 1; grid-row: 1; }
.service-row::after { pointer-events: none; }
.service-icon { z-index: 1; grid-column: 1; grid-row: 1; justify-self: center; width: 21px; height: 21px; color: var(--gold); fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; pointer-events: none; }
.service-index::before { content: none; }
.service-modal { width: min(460px, calc(100% - 32px)); padding: 0; color: var(--graphite); background: transparent; border: 0; border-radius: 24px; box-shadow: 0 26px 70px rgba(38, 58, 53, 0.26); }
.service-modal::backdrop { background: rgba(38, 58, 53, 0.42); backdrop-filter: blur(4px); }
.service-modal-card { position: relative; padding: 42px 38px 38px; overflow: hidden; background: var(--ivory); border: 1px solid rgba(169, 140, 91, 0.55); border-radius: 24px; }
.service-modal-card::before { position: absolute; right: -36px; bottom: -54px; width: 150px; height: 150px; border: 1px solid rgba(169, 140, 91, 0.25); border-radius: 50%; content: ""; }
.service-modal-kicker { position: relative; z-index: 1; margin: 0 0 12px; color: var(--gold); font-family: var(--mono); font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; }
.service-modal h2 { position: relative; z-index: 1; max-width: 340px; margin: 0 0 16px; color: var(--olive); font-size: 39px; line-height: 1.05; }
.service-modal-description { position: relative; z-index: 1; max-width: 350px; margin: 0 0 26px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.service-modal .button { position: relative; z-index: 1; }
.service-modal .modal-whatsapp-icon { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.service-modal-close { position: absolute; z-index: 2; top: 13px; right: 16px; display: grid; place-items: center; width: 30px; height: 30px; padding: 0; color: var(--olive); background: transparent; border: 1px solid rgba(38, 58, 53, 0.2); border-radius: 50%; font-size: 23px; font-weight: 300; line-height: 1; cursor: pointer; }
.service-modal-close:hover { color: var(--ivory); background: var(--olive); }

@media (max-width: 760px) {
  .service-icon { width: 18px; height: 18px; stroke-width: 1.4; }
  .service-modal-card { padding: 38px 24px 28px; border-radius: 20px; }
  .service-modal h2 { font-size: 31px; }
  .service-modal-description { font-size: 12px; line-height: 1.65; }
  .service-modal .button { width: 100%; }
}

.service-modal { position: fixed; z-index: 100; inset: 0; display: none; place-items: center; width: 100%; max-width: none; height: 100%; padding: 16px; overflow: auto; background: rgba(38, 58, 53, 0.42); border: 0; border-radius: 0; box-shadow: none; }
.service-modal[hidden] { display: none; }
.service-modal.is-open, .service-modal:target { display: grid; }
.service-modal::backdrop { display: none; }

/* Final scale and hierarchy matched to the supplied reference */
.site-header { width: min(calc(100% - 48px), 760px); margin-top: 34px; border-radius: 58px 58px 0 0; }
.site-header > .container, .one-page-hero > .container, .profile > .container, .contact > .container { width: 100%; }
.header-inner { min-height: 305px; align-items: flex-start; padding: 42px 56px 26px; }
.brand { align-items: flex-start; flex-direction: column; gap: 10px; }
.brand-mark-generated { width: 102px; height: 102px; }
.brand-copy-generated { position: relative; padding-top: 17px; }
.brand-copy-generated::before { position: absolute; top: 0; left: 0; width: 170px; height: 1px; background: var(--gold); content: ""; }
.brand-copy-generated::after { position: absolute; top: -3px; left: 81px; width: 7px; height: 7px; background: var(--gold); content: ""; transform: rotate(45deg); }
.brand-copy-generated strong { font-size: 35px; letter-spacing: -0.045em; line-height: 0.92; }
.brand-copy-generated small { margin-top: 13px; font-size: 8px; letter-spacing: 0.16em; }
main { width: min(calc(100% - 48px), 760px); margin-bottom: 34px; border-radius: 0 0 58px 58px; }
.one-page-hero { padding: 33px 56px 48px; }
.one-page-hero .hero-grid { grid-template-columns: minmax(0, 1fr) 238px; gap: 8%; }
.one-page-hero h1 { max-width: 470px; font-size: clamp(43px, 4.9vw, 55px); }
.one-page-hero .hero-intro { max-width: 405px; font-size: 13px; }
.hero-contact { display: none; }
.profile { padding: 0 26px !important; }
.profile-grid { padding: 52px 57px 31px; border-radius: 44px 44px 0 0; }
.services-compact h2 { font-size: 43px; }
.service-row { grid-template-columns: 55px minmax(0, 1fr) 22px; gap: 20px; padding: 21px 0; }
.service-index { width: 51px; height: 51px; }
.service-icon { width: 23px; height: 23px; }
.service-row h3 { font-size: 18px; }
.contact { padding: 23px 26px 47px !important; }
.contact-card { gap: 29px; padding: 40px 34px 35px; border-radius: 29px; }
.contact-quote { font-size: 30px; }
.contact-card .button-large { min-width: 300px; min-height: 62px; font-size: 11px; }

@media (max-width: 760px) {
  .site-header { width: calc(100% - 48px); margin-top: 18px; border-radius: 39px 39px 0 0; }
  .header-inner { min-height: 205px; padding: 26px 25px 18px; }
  .brand-mark-generated { width: 73px; height: 73px; }
  .brand-copy-generated { padding-top: 13px; }
  .brand-copy-generated::before { width: 142px; }
  .brand-copy-generated::after { left: 68px; top: -3px; width: 6px; height: 6px; }
  .brand-copy-generated strong { font-size: 25px; }
  .brand-copy-generated small { margin-top: 10px; font-size: 5.5px; letter-spacing: 0.13em; }
  main { width: calc(100% - 48px); margin-bottom: 18px; border-radius: 0 0 39px 39px; }
  .one-page-hero { padding: 27px 21px 31px; }
  .one-page-hero .hero-grid { grid-template-columns: minmax(0, 1fr) 98px; column-gap: 13px; row-gap: 23px; }
  .one-page-hero .hero-monogram { top: -8px; width: 31px; }
  .one-page-hero h1 { max-width: 10ch; margin-bottom: 15px; font-size: clamp(31px, 10.5vw, 39px); }
  .one-page-hero .hero-intro { max-width: 24ch; margin-bottom: 17px; font-size: 10px; }
  .one-page-hero .hero-actions .button { min-height: 45px; padding: 9px 10px; font-size: 6.5px; }
  .one-page-hero .hero-visual { max-width: 98px; margin-top: 17px; }
  .one-page-hero .portrait-frame { padding: 5px; }
  .one-page-hero .portrait-frame::before { top: 10px; right: -5px; bottom: -5px; left: 10px; }
  .profile { padding: 0 10px !important; }
  .profile-grid { padding: 35px 18px 19px; border-radius: 31px 31px 0 0; }
  .services-compact h2 { margin-bottom: 21px; font-size: 32px; }
  .service-row { grid-template-columns: 44px minmax(0, 1fr) 17px; gap: 12px; padding: 17px 0; }
  .service-index { width: 42px; height: 42px; }
  .service-icon { width: 19px; height: 19px; }
  .service-row h3 { font-size: 13px; }
  .contact { padding: 17px 10px 29px !important; }
  .contact-card { gap: 21px; padding: 30px 14px 27px; border-radius: 22px; }
  .contact-quote { font-size: 23px; }
  .contact-card .button-large { min-width: 0; min-height: 52px; font-size: 7px; }
}

/* Definitive reference layout — kept last to prevent legacy rules from changing it */
html,
body { margin: 0; padding: 0; overflow-x: hidden; background: var(--reference-page); }

html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

.site-header,
main { width: 100%; max-width: none; margin-right: 0; margin-left: 0; background: var(--reference-card); }

.site-header {
  top: 0;
  z-index: 63;
  height: 420px;
  margin-top: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.site-header.is-scrolled { background: transparent; box-shadow: none; }

.site-header > .header-inner,
.site-header > .container.header-inner { width: 100%; max-width: none; margin: 0; background: transparent !important; }
.header-inner { min-height: 0; height: 100%; padding: 62px 55px 18px; background: transparent; }
.brand { align-items: flex-start; flex-direction: column; gap: 27px; }
.brand-mark-generated { width: 138px; height: 138px; margin-left: 65px; clip-path: none; transform: none; mix-blend-mode: multiply; }
.brand-copy-generated { align-items: center; width: 278px; padding-top: 0; }
.brand-copy-generated::before { top: 138px; width: 278px; }
.brand-copy-generated::after { top: 134px; left: 134px; width: 8px; height: 8px; }
.brand-copy-generated strong { font-size: 57px; font-weight: 400; line-height: 0.94; text-transform: uppercase; }
.brand-copy-generated small { align-self: center; margin-top: 54px; margin-left: 0; font-size: 14px; letter-spacing: 0.2em; text-align: center; white-space: nowrap; }

main { margin-bottom: 0; overflow: visible; border-radius: 0; }
.one-page-hero { position: relative; z-index: 60; display: block; height: 438px; min-height: 438px; padding: 38px 0 43px; overflow: visible; }
.one-page-hero::before { display: none; }
.one-page-hero > .container { width: 720px; margin: 0 0 0 55px; }
.one-page-hero .hero-grid { position: relative; display: grid; grid-template-columns: 425px 295px; gap: 0; width: 720px; }
.one-page-hero .hero-copy { position: relative; z-index: 62; grid-column: 1; width: 460px; }
.one-page-hero h1 { max-width: 460px; margin: 0 0 40px; font-size: 45px; line-height: 1.06; }
.one-page-hero h1 em { color: var(--olive); }
.one-page-hero .hero-intro { max-width: 460px; margin: 0 0 50px; font-size: 17px; line-height: 1.75; }
.one-page-hero .hero-actions .button { width: 460px; min-height: 62px; padding: 13px 24px; border-radius: 12px; font-size: 16px; letter-spacing: 0.1em; }
.one-page-hero .hero-actions .button span { font-size: 27px; }
.one-page-hero .hero-signature, .hero-contact { display: none; }
.one-page-hero .hero-visual { position: absolute; z-index: 61; top: -375px; right: calc((720px - 100vw) / 2); width: 315px; max-width: none; height: 813px; margin: 0; overflow: visible; }
.one-page-hero .portrait-frame { position: absolute; top: -84px; right: -80px; width: 620px; height: auto; aspect-ratio: 941 / 1080; margin: 0; padding: 0; overflow: hidden; clip-path: inset(0 78px 0 0); border: 0; border-radius: 0; background: transparent; }
.one-page-hero .portrait-frame::before, .one-page-hero .frame-corner { display: none; }
.one-page-hero .portrait-frame::after {
  position: absolute;
  z-index: 2;
  inset: -2px;
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(to right, var(--reference-page) 0%, rgba(247, 245, 241, 0.96) 18%, rgba(247, 245, 241, 0.68) 30%, transparent 46%),
    linear-gradient(to left, rgba(244, 240, 232, 0.48) 0%, transparent 5%),
    linear-gradient(to bottom, rgba(247, 245, 241, 0.28) 0%, transparent 5%),
    linear-gradient(to top, var(--reference-card) 0%, rgba(244, 240, 232, 0.72) 4%, transparent 10%);
  box-shadow: none;
  content: "";
  pointer-events: none;
}
.one-page-hero .portrait-photo { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; filter: none; opacity: 1; transform: none; }
.desk-scene { display: none; }
.visual-arch { display: none; }

.profile { z-index: 70; height: 510px; padding: 0 !important; overflow: hidden; border-radius: 58px 58px 0 0; background: var(--reference-panel); }
.profile-grid { width: 100%; height: 100%; padding: 49px 78px 10px; border-radius: 58px 58px 0 0; background: var(--reference-panel); }
.services-compact > .eyebrow { display: none; }
.services-compact h2 { display: flex; gap: 16px; margin: 0 0 6px; font-size: 43px; }
.service-row { grid-template-columns: 78px minmax(0, 1fr) 24px; gap: 42px; min-height: 99px; padding: 10px 0; border: 0; background: linear-gradient(rgba(169, 140, 91, 0.34), rgba(169, 140, 91, 0.34)) 120px bottom / calc(100% - 120px) 1px no-repeat; }
.service-row:last-child { background: none; }
.service-index { width: 78px; height: 78px; }
.service-icon { width: 33px; height: 33px; stroke-width: 1.35; }
.service-row h3 { font-size: 22px; font-weight: 400; }
.service-row::after { font-size: 38px; }

.contact { height: 245px; padding: 7px 35px 18px !important; background: var(--reference-panel); }
.contact-card { flex-direction: column; gap: 24px; width: 100%; height: 220px; padding: 24px 30px 22px; border-radius: 29px; }
.contact-quote { margin-top: 10px; font-size: 33px; }
.contact-actions { display: flex; flex-direction: column; width: 432px; }
.contact-card .button-large { width: 432px; min-width: 432px; min-height: 64px; border-radius: 15px; font-size: 14px; }
.contact-card .whatsapp-symbol { width: 34px; height: 34px; border: 0; }

@media (max-width: 760px) {
  .site-header, main { width: 100%; max-width: none; margin-right: 0; margin-left: 0; }
  .site-header { height: 224px; margin-top: 0; border-radius: 0; }
  .header-inner { min-height: 0; height: 100%; padding: 18px 25px 8px; }
  .brand { gap: 10px; }
  .brand-mark-generated { width: 78px; height: 78px; margin-left: 40px; clip-path: none; transform: none; }
  .brand-copy-generated { width: 172px; padding-top: 0; }
  .brand-copy-generated strong { font-size: 31px; }
  .brand-copy-generated::before { top: 76px; width: 172px; }
  .brand-copy-generated::after { top: 73px; left: 82px; width: 7px; height: 7px; }
  .brand-copy-generated small { max-width: none; margin-top: 26px; margin-left: 0; overflow: visible; font-size: 7px; letter-spacing: 0.16em; white-space: nowrap; }
  main { margin-bottom: 0; border-radius: 0; }
  .one-page-hero { height: 248px; min-height: 248px; padding: 14px 0 7px 24px; }
  .one-page-hero > .container { width: 100%; margin: 0; }
  .one-page-hero .hero-grid { grid-template-columns: minmax(0, 1fr) 113px; gap: 0; width: 100%; }
  .one-page-hero .hero-copy { width: auto; }
  .one-page-hero h1 { max-width: 255px; margin-bottom: 12px; font-size: clamp(26px, 7.8vw, 33px); line-height: 1.02; }
  .one-page-hero .hero-intro { max-width: 230px; margin-bottom: 12px; font-size: 10px; line-height: 1.55; }
  .one-page-hero .hero-actions .button { width: 230px; min-height: 50px; padding: 10px 14px; border-radius: 9px; font-size: 11px; letter-spacing: 0.08em; }
  .one-page-hero .hero-actions .button span { font-size: 22px; }
  .one-page-hero .hero-visual { top: -240px; right: 0; width: 135px; max-width: none; height: 558px; margin: 0; }
  .one-page-hero .portrait-frame { top: -28px; right: -55px; width: 350px; height: auto; aspect-ratio: 941 / 1080; clip-path: inset(0 53px 0 0); padding: 0; border-radius: 0; }
  .profile { height: 414px; padding: 0 !important; border-radius: 34px 34px 0 0; }
  .profile-grid { padding: 27px 20px 8px; border-radius: 34px 34px 0 0; }
  .services-compact h2 { gap: 8px; margin: 0 0 9px; font-size: 31px; }
  .service-row { grid-template-columns: 52px minmax(0, 1fr) 16px; gap: 14px; min-height: 83px; padding: 7px 0; background-position: 66px bottom; background-size: calc(100% - 66px) 1px; }
  .service-index { width: 52px; height: 52px; }
  .service-icon { width: 23px; height: 23px; }
  .service-row h3 { font-size: 13px; }
  .service-row::after { font-size: 28px; }
  .contact { height: 225px; padding: 6px 12px 25px !important; }
  .contact-card { height: 194px; gap: 18px; padding: 25px 13px 18px; border-radius: 22px; }
  .contact-quote { font-size: 22px; }
  .contact-actions { width: 100%; }
  .contact-card .button-large { width: 100%; min-width: 0; min-height: 52px; border-radius: 10px; font-size: 8px; }
  .contact-card .whatsapp-symbol { width: 26px; height: 26px; }
}

/* Desktop final — referência visual, inserido por último para prevalecer. */
@media (min-width: 761px) {
  body { background: var(--reference-card); }
  .site-header,
  main { width: 100%; max-width: none; margin: 0; border: 0; border-radius: 0; box-shadow: none; }
  .site-header { position: relative; z-index: 70; height: 106px; background: var(--reference-card); }
  .site-header > .header-inner { display: flex; align-items: center; width: 100%; height: 100%; min-height: 0; padding: 0 6.8%; }
  .site-header .brand,
  .site-header .menu-toggle { display: none !important; }
  .site-header .site-nav { position: static; display: flex !important; align-items: center; flex-direction: row; gap: 38px; width: 100%; padding: 0; color: var(--graphite); background: transparent; font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: 0; opacity: 1; pointer-events: auto; text-transform: none; transform: none; }
  .site-header .site-nav > a:not(.nav-cta) { display: inline-flex !important; padding: 8px 0; }
  .site-header .site-nav > a:first-child { color: var(--olive); border-bottom: 1px solid var(--gold); }
  .site-header .site-nav .nav-cta { display: inline-flex; align-items: center; gap: 13px; min-height: 46px; margin: 0 0 0 auto; padding: 12px 25px; color: #dcc188; background: var(--olive); border-radius: 9px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }

  main { overflow: hidden; background: var(--reference-card); }
  .one-page-hero { height: 600px; min-height: 600px; padding: 28px 6.8% 0; overflow: hidden; background: var(--reference-card); }
  .one-page-hero > .container { width: 100%; max-width: none; margin: 0; }
  .one-page-hero .hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 520px; width: 100%; height: 100%; }
  .one-page-hero .hero-copy { width: 100%; max-width: 545px; padding-top: 127px; }
  .one-page-hero .hero-monogram { position: absolute; top: 18px; left: 0; right: auto; display: block; width: 98px; height: 98px; opacity: 1; mix-blend-mode: multiply; }
  .one-page-hero h1 { max-width: 500px; margin: 0 0 20px; font-size: clamp(42px, 3.7vw, 58px); line-height: 1.08; }
  .one-page-hero .hero-intro { max-width: 455px; margin: 0 0 25px; font-size: 15px; line-height: 1.7; }
  .one-page-hero .hero-actions .button { width: 330px; min-height: 57px; padding: 12px 25px; border-radius: 9px; font-size: 13px; letter-spacing: 0.13em; }
  .one-page-hero .hero-actions .button span { font-size: 25px; }
  .one-page-hero .hero-visual { position: relative; z-index: 2; top: 0; right: auto; width: 520px; height: 600px; margin: 0; overflow: visible; }
  .one-page-hero .portrait-frame { position: absolute; top: 0; right: 0; width: 520px; height: 600px; aspect-ratio: auto; overflow: hidden; clip-path: none; border: 1px solid rgba(169, 140, 91, 0.72); border-radius: 145px 145px 0 0; background: transparent; }
  .one-page-hero .portrait-frame::after { display: none; }
  .one-page-hero .portrait-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }

  .profile { display: block; height: 295px; padding: 0 !important; overflow: hidden; border-radius: 38px 38px 0 0; background: var(--reference-panel); }
  .profile-grid { display: block; width: 100%; height: 100%; padding: 24px 8% 16px; background: var(--reference-panel); border-radius: 38px 38px 0 0; }
  .profile-story { display: none; }
  .services-compact { width: 100%; }
  .services-compact > .eyebrow { display: none; }
  .services-compact h2 { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 0 0 20px; font-size: 38px; line-height: 1; }
  .services-compact h2::before,
  .services-compact h2::after { width: 86px; height: 1px; background: var(--gold); content: ""; }
  .service-list { display: grid; grid-template-columns: repeat(4, 1fr); border: 0; }
  .service-row { display: flex; align-items: center; flex-direction: column; justify-content: flex-start; gap: 12px; min-height: 116px; padding: 0 24px; color: var(--graphite); background: transparent; border: 0; border-right: 1px solid rgba(169, 140, 91, 0.34); text-align: center; }
  .service-row:last-child { border-right: 0; }
  .service-row:hover { background: transparent; }
  .service-row .service-index { display: none; }
  .service-row > div { display: contents; }
  .service-row h3 { order: 2; margin: 0; font-family: var(--sans); font-size: 15px; font-weight: 500; line-height: 1.35; }
  .service-row p,
  .service-row::after { display: none; }
  .service-row .service-icon { order: 1; width: 58px; height: 58px; padding: 14px; color: var(--gold); border: 1px solid var(--gold); border-radius: 50%; stroke-width: 1.45; }

  .experience,
  .site-footer,
  .floating-whatsapp { display: none !important; }
  .contact { display: block; height: 166px; padding: 12px 8% 18px !important; background: var(--reference-panel); }
  .contact-card { display: flex !important; align-items: center; justify-content: center; flex-direction: row; gap: 52px; width: 100%; height: 136px; padding: 20px 50px; overflow: hidden; background: transparent; border: 1px solid rgba(169, 140, 91, 0.7); border-radius: 20px; text-align: left; }
  .contact-quote { width: 470px; margin: 0; font-size: 26px; line-height: 1.15; text-align: center; }
  .contact-actions { width: 268px; }
  .contact-card .button-large { width: 268px; min-width: 268px; min-height: 51px; border-radius: 9px; font-size: 12px; letter-spacing: 0.2em; }
  .contact-card .whatsapp-symbol { width: 27px; height: 27px; }
}

@media (min-width: 761px) {
  .hero-brand-lockup { display: grid !important; grid-template-columns: 130px 410px; grid-template-rows: auto auto; column-gap: 20px; align-items: center; width: 560px; margin: 21px 0 18px; }
  .hero-brand-lockup img { grid-column: 1; grid-row: 1 / 3; align-self: center; width: 130px; height: 130px; margin: 0; }
  .hero-brand-lockup strong { grid-column: 2; grid-row: 1; width: 410px; font-size: 44px; line-height: 1; text-align: center; white-space: nowrap; }
  .hero-brand-lockup small { grid-column: 2; grid-row: 2; width: 410px; margin-top: 12px; padding-top: 15px; text-align: center; }
  .hero-brand-lockup small::before { width: 100%; }
  .hero-brand-lockup small::after { left: calc(50% - 4px); }
  .one-page-hero .hero-copy { padding-top: 0 !important; }
  .one-page-hero .hero-monogram { display: none !important; }
  .one-page-hero h1 { max-width: 600px; margin-bottom: 19px; font-size: 42px; }
  .one-page-hero .hero-intro { max-width: 470px; margin-bottom: 24px; }
}
