:root {
  --ink: #191618;
  --cream: #faf7f1;
  --paper: #ffffff;
  --red: #800e19;
  --red-dark: #5b0710;
  --gold: #b88b39;
  --gold-light: #e6c77d;
  --muted: #666066;
  --line: #e4dcd2;
  --display: 'Times New Roman', Georgia, serif;
  --body: 'DM Sans', Arial, sans-serif;
}
/* Project inquiry: the same dialog is shared by physical and portable pages. */
button[data-project-inquiry] { cursor: pointer; text-align: left; }
button.text-link[data-project-inquiry] { background: transparent; border-width: 0 0 1px; padding: 0 0 5px; border-radius: 0; color: inherit; }
button.text-link.light[data-project-inquiry] { color: #ede5dc; }
html.inquiry-open, html.inquiry-open body { overflow: hidden; }
.project-inquiry { width: min(640px, calc(100% - 32px)); max-width: none; max-height: calc(100dvh - 40px); margin: auto; padding: 0; border: 1px solid #d5c4a5; border-top: 4px solid var(--red); background: var(--cream); color: var(--ink); box-shadow: 0 24px 100px #0005; overflow: auto; overscroll-behavior: contain; }
.project-inquiry::backdrop { background: #100d10b8; backdrop-filter: blur(3px); }
.inquiry-topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; position: sticky; top: 0; z-index: 1; padding: 14px 24px; border-bottom: 1px solid var(--line); background: var(--cream); }
.inquiry-topbar>span { font: .8125rem/1.4 var(--body); letter-spacing: .15em; color: var(--red); font-weight: 600; }
.inquiry-close { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid #cbbfae; background: transparent; color: var(--ink); cursor: pointer; }
.inquiry-close:hover { background: #ece3d5; }
.inquiry-close svg { width: 22px; height: 22px; stroke-width: 1.5; }
.inquiry-content { padding: 30px 40px 24px; }
.inquiry-eyebrow { font: .75rem/1.6 var(--body); letter-spacing: .13em; color: var(--red); font-weight: 600; margin-bottom: 18px; }
.inquiry-heading h2 { font-size: clamp(2.35rem, 4vw, 3rem); line-height: 1.05; }
.inquiry-heading>p:last-child { font-size: 1rem; line-height: 1.6; color: var(--muted); margin-top: 16px; }
.inquiry-heading { padding-bottom: 26px; border-bottom: 1px solid #d9c8aa; margin-bottom: 22px; }
.inquiry-required { font-size: .8125rem; color: var(--muted); margin-bottom: 18px; }
.inquiry-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
.inquiry-field { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.inquiry-field[hidden] { display: none; }
.inquiry-full { grid-column: 1 / -1; }
.inquiry-field label { font-size: .875rem; font-weight: 600; line-height: 1.5; }
.inquiry-field label>span:not(.inquiry-optional) { color: var(--red); }
.inquiry-optional { color: var(--muted); font-weight: 400; }
.inquiry-field input, .inquiry-field select, .inquiry-field textarea { width: 100%; min-width: 0; font: 1rem/1.5 var(--body); color: var(--ink); background: #fff9; border: 1px solid #c9c0b7; border-radius: 2px; padding: 13px 14px; min-height: 52px; }
.inquiry-field select { padding-right: 24px; }
.inquiry-field textarea { resize: vertical; min-height: 110px; }
.inquiry-field input::placeholder, .inquiry-field textarea::placeholder { color: #746c70; opacity: 1; }
.inquiry-field input:focus, .inquiry-field select:focus, .inquiry-field textarea:focus { outline: 2px solid var(--red); outline-offset: 2px; }
.inquiry-phone { display: flex; min-width: 0; }
.inquiry-phone>span { display: flex; align-items: center; justify-content: center; padding: 10px; background: #eee7dc; border: 1px solid #c9c0b7; border-right: 0; border-radius: 2px 0 0 2px; min-width: 51px; font-size: 1rem; }
.inquiry-phone input { border-radius: 0 2px 2px 0; }
.inquiry-hint { font-size: .8125rem; line-height: 1.5; color: var(--muted); }
.inquiry-consent { display: flex; align-items: flex-start; gap: 12px; font-size: .875rem; line-height: 1.6; margin-top: 24px; cursor: pointer; }
.inquiry-consent input { flex-shrink: 0; width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--red); }
.inquiry-consent input:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.inquiry-handoff { font-size: .8125rem; line-height: 1.6; color: var(--muted); margin-top: 14px; }
.inquiry-submit { width: 100%; margin-top: 20px; cursor: pointer; }
.inquiry-submit:disabled { opacity: .6; cursor: wait; }
.inquiry-status:empty { display: none; }
.inquiry-status { font-size: .875rem; color: var(--red); margin-top: 14px; }
.inquiry-signature { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid #d9c8aa; padding-top: 20px; margin-top: 28px; font-size: .75rem; line-height: 1.6; letter-spacing: .06em; color: var(--muted); }
@media (max-width: 540px) {
  .project-inquiry { width: calc(100% - 20px); max-height: calc(100dvh - 20px); }
  .inquiry-topbar { padding: 10px 18px; }
  .inquiry-content { padding: 22px 20px; }
  .inquiry-fields { grid-template-columns: 1fr; }
  .inquiry-heading h2 { font-size: 2.4rem; }
  .inquiry-eyebrow { letter-spacing: .08em; }
  .inquiry-signature { align-items: flex-start; gap: 12px; flex-direction: column; }
  .inquiry-submit { gap: 12px; padding-inline: 12px; }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 106px; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 1rem/1.7 var(--body); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { font-weight: 400; }
h1, h2 { font-family: var(--display); }
h2 { font-size: clamp(2.4rem, 4.1vw, 4rem); line-height: 1.08; letter-spacing: -.035em; }
h2 em { color: var(--red); font-weight: 400; }
svg { width: 32px; height: 32px; stroke: currentColor; stroke-width: 1.3; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 6px; }
::selection { background: var(--gold-light); color: var(--ink); }
.container { width: min(1280px, calc(100% - 112px)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; background: white; padding: 12px 20px; }
.skip-link:focus { top: 12px; }
.site-header { position: sticky; top: 0; z-index: 10; background: #fff; border-top: 4px solid var(--red); border-bottom: 1px solid #c4a76c75; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 101px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-symbol { display: block; width: 66px; height: 66px; object-fit: contain; }
.brand-name { display: block; font-family: var(--display); font-size: 1.9rem; letter-spacing: .07em; line-height: 1; color: #191618; }
.brand-name>span { display: block; color: var(--red); font-family: var(--display); font-size: .875rem; letter-spacing: .24em; margin-top: 8px; }
nav { display: flex; align-items: center; gap: 28px; font-size: .875rem; }
nav>a:not(.button) { padding-block: 12px; }
nav>a:not(.button):hover { color: var(--red); }
#navegacao { align-self: stretch; }
.services-menu { position: relative; display: flex; align-items: center; align-self: stretch; }
.services-toggle { display: flex; align-items: center; justify-content: space-between; gap: 9px; min-height: 48px; padding: 12px 0; border: 0; background: none; color: inherit; cursor: pointer; }
.services-toggle:hover, .services-toggle[aria-expanded="true"], .services-toggle.is-current { color: var(--red); }
.services-toggle.is-current { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 8px; }
.services-chevron { width: 16px; height: 16px; stroke-width: 1.5; transition: transform .18s; }
.services-toggle[aria-expanded="true"] .services-chevron { transform: rotate(180deg); }
.services-dropdown { position: absolute; top: 100%; left: 0; width: min(520px, calc(100vw - 72px)); max-height: calc(100dvh - 120px); overflow-y: auto; background: var(--cream); border: 1px solid #cfc5b8; box-shadow: 0 20px 44px #19161826; }
.services-dropdown[hidden] { display: none; }
.services-dropdown-heading { display: flex; justify-content: space-between; gap: 20px; padding: 20px 27px; border-bottom: 1px solid #cfc5b8; font-family: 'Courier New', monospace; font-size: .8125rem; line-height: 1.5; font-weight: 600; letter-spacing: .14em; color: var(--muted); }
.services-dropdown-heading>span:last-child { color: var(--red); white-space: nowrap; }
.services-catalog { list-style: none; margin: 0; padding: 0; }
.services-catalog li { border-bottom: 1px solid var(--line); }
.services-catalog a { display: grid; grid-template-columns: 32px 1fr 20px; align-items: start; gap: 16px; padding: 24px 27px; transition: background .18s; }
.services-catalog a:hover, .services-catalog a:focus-visible { background: #efe7db; }
.services-dropdown a:focus-visible { outline-offset: -4px; }
.catalog-number { color: var(--red); font: italic 1.4rem/1.2 var(--display); padding-top: 2px; }
.catalog-title { display: block; font: 1.5rem/1.2 var(--display); letter-spacing: -.02em; }
.catalog-description { display: block; margin-top: 9px; font-family: 'Courier New', monospace; font-size: .8125rem; line-height: 1.6; letter-spacing: .08em; text-transform: uppercase; color: #625b52; }
.catalog-arrow { color: var(--red); font-size: 1.25rem; opacity: 0; transition: opacity .18s; }
.services-catalog a:hover .catalog-arrow, .services-catalog a:focus-visible .catalog-arrow { opacity: 1; }
.services-all { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 27px; color: white; background: var(--ink); font-family: 'Courier New', monospace; font-size: .875rem; letter-spacing: .12em; line-height: 1.5; text-transform: uppercase; transition: background .18s; }
.services-all:hover { background: var(--red-dark); }
.services-all>span { font: 1.5rem/1 var(--body); color: var(--gold-light); }
#navegacao .services-all[aria-current="page"] { color: white; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 25px; padding: 17px 24px; font-size: .875rem; font-weight: 550; line-height: 1.5; border: 1px solid transparent; transition: background .2s, color .2s, border-color .2s; min-height: 48px; border-radius: 3px; }
.button span { font-size: 21px; line-height: 1; }
.button-small { padding: 12px 20px; }
.button-dark { background: var(--red); color: white; }
.button-dark:hover { background: var(--red-dark); }
.button-cream { background: var(--red); color: white; border-color: #b74444; }
.button-cream:hover { background: #a61623; border-color: #c55454; }
.button-coral { background: var(--red); color: white; }
.button-coral:hover { background: var(--red-dark); }
.menu-toggle { display: none; }
.hero { color: white; background: radial-gradient(ellipse at 79% 41%, #3a101a80, transparent 47%), #090709; }
.hero-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid #c89a493d; font-size: .75rem; letter-spacing: .16em; color: #c1b8b6; }
.route-arrow { color: var(--gold-light); margin-inline: 14px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: 45px; align-items: center; padding: 61px 0 70px; }
.eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .16em; line-height: 1.7; }
.hero-eyebrow { color: var(--gold-light); font-size: .8125rem; margin-bottom: 28px; }
.hero h1 { font-size: clamp(3.7rem, 6.4vw, 6.25rem); line-height: 1.01; letter-spacing: -.045em; }
.hero h1 em { font-weight: 400; font-style: normal; color: var(--gold-light); }
.hero-description { max-width: 440px; color: #cec5c5; margin-top: 27px; font-size: 1rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; font-size: .875rem; line-height: 1.6; border-bottom: 1px solid var(--gold); padding-bottom: 5px; font-weight: 500; }
.text-link span { font-size: 19px; }
.text-link:hover { color: var(--red); border-color: var(--red); }
.text-link.light { color: #ede5dc; border-color: #95723e; }
.text-link.light:hover { color: var(--gold-light); }
.hero-visual { min-width: 0; position: relative; }
.hero-visual .hero-photo { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; object-position: center bottom; max-width: 535px; margin: 0 auto; border: 1px solid #c89a495e; border-radius: 3px; }
.hero-bottom { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; align-items: center; padding: 26px 0; border-top: 1px solid #c89a495e; }
.hero-bottom>span { color: #c5b6b7; font-size: .875rem; line-height: 1.6; }
.hero-bottom strong { font-weight: 400; color: #fff; }
.hero-bottom>a { display: flex; align-items: center; gap: 17px; font-size: .75rem; color: var(--gold-light); }
.hero-bottom>a>span { color: #fff; font-size: 1.125rem; }
.hero-bottom>a:hover>span { text-decoration: underline; text-underline-offset: 5px; }
.section { padding-block: 96px; }
.section-intro { display: grid; grid-template-columns: 1fr 2.25fr; gap: 70px; margin-bottom: 52px; }
.section-intro>.eyebrow { color: var(--red); padding-top: 9px; }
.section-intro>div>p { max-width: 575px; margin-top: 23px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service { padding: 31px 28px; display: flex; flex-direction: column; background: #fcfaf7; border: 1px solid var(--line); border-top: 3px solid var(--red); scroll-margin-top: 120px; }
.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.index { color: var(--red); font-size: .875rem; }
.service svg { color: #93691c; }
.service h3 { font-family: var(--display); font-size: 2rem; line-height: 1.2; letter-spacing: -.03em; }
.service-subtitle { font-size: .875rem; font-weight: 600; margin: 10px 0 17px; color: var(--red); }
.service p:not(.service-subtitle) { color: var(--muted); margin-bottom: 31px; }
.service .text-link { align-self: flex-start; margin-top: auto; }
.process { background: #f5f1eb; border-block: 1px solid var(--line); padding-block: 77px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px; }
.step { display: block; font-family: var(--display); font-size: 2.8rem; color: var(--red); border-bottom: 1px solid #b88b397a; padding-bottom: 13px; margin-bottom: 24px; }
.process-grid h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 10px; }
.process-grid p { color: var(--muted); }
.fair-section { background: var(--red-dark); color: white; padding-block: 92px; }
.fair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.fair-heading>.eyebrow { color: var(--gold-light); }
.fair-heading h2 { font-size: clamp(3.6rem, 5.3vw, 5.2rem); line-height: 1.04; margin: 25px 0; }
.fair-heading h2 em { color: var(--gold-light); }
.fair-heading>p:last-child { max-width: 380px; color: #ead4d4; }
.fair-lead { font-size: 1.25rem; line-height: 1.5; }
.fair-content { padding-top: 34px; }
.fair-list { padding: 0; margin: 31px 0; list-style: none; }
.fair-list>li { border-top: 1px solid #d8b76a55; padding: 22px 0; display: grid; grid-template-columns: 25px 1fr; gap: 24px; }
.fair-list>li>span { color: var(--gold-light); font-size: .75rem; padding-top: 4px; }
.fair-list h3 { font-size: 1rem; font-weight: 600; margin-bottom: 5px; }
.fair-list p { font-size: .9375rem; color: #ead4d4; }
.fair-content .button { width: 100%; justify-content: space-between; background: var(--gold-light); color: #341711; border-color: var(--gold-light); }
.fair-content .button:hover { background: white; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 90px; }
.faq .eyebrow { color: var(--red); }
.faq h2 { margin: 24px 0; }
.faq-grid>div>p:not(.eyebrow) { color: var(--muted); margin-bottom: 24px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; list-style: none; cursor: pointer; padding: 24px 0; font-size: 1rem; font-weight: 500; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 25px; color: var(--red); font-weight: 400; flex-shrink: 0; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details>p { padding: 0 36px 24px 0; color: var(--muted); }
.contact-section { background: #f5f1eb; color: var(--ink); padding-block: 83px; border-top: 4px solid var(--red); border-bottom: 1px solid var(--gold); }
.contact-section .eyebrow { color: var(--red); margin-bottom: 32px; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 90px; }
.contact-grid h2 { font-size: clamp(2.8rem, 4.5vw, 4.6rem); line-height: 1.13; }
.contact-content>p { color: var(--muted); margin-bottom: 24px; }
.contact-content>.button { margin-bottom: 30px; }
.contact-detail { display: block; width: fit-content; margin-bottom: 22px; font-size: 1.125rem; overflow-wrap: anywhere; }
.contact-detail span { display: block; color: var(--red); font-size: .75rem; font-weight: 600; letter-spacing: .12em; margin-bottom: 5px; }
.contact-detail:hover { color: var(--red); }
footer { background: white; padding: 33px 0 20px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-bottom: 29px; }
.footer-top p { color: var(--muted); font-size: .875rem; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: .75rem; color: var(--muted); }
@media (min-width: 1600px) { .hero-grid { gap: 65px; } }
@media (max-width: 1150px) {
  .container { width: calc(100% - 72px); }
  nav { gap: 20px; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: 6.55vw; }
  .hero-actions { gap: 20px; }
  .hero-bottom { gap: 20px; }
  .hero-bottom>a { gap: 10px; }
  .hero-bottom>a>span { font-size: 1rem; }
  .section-intro { gap: 35px; }
  .fair-grid { gap: 60px; }
  .faq-grid, .contact-grid { gap: 50px; }
  .service { padding-inline: 22px; }
  .service-grid { gap: 16px; }
}
@media (max-width: 900px) {
  .header-inner { min-height: 83px; }
  .brand-symbol { width: 54px; height: 54px; }
  .brand-name { font-size: 1.7rem; }
  .menu-toggle { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); background: transparent; padding: 9px 13px; color: var(--ink); min-height: 44px; font-size: .875rem; }
  .menu-toggle span { font-size: 18px; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--line); padding: 20px 36px; align-items: stretch; box-shadow: 0 12px 16px #19161814; }
  nav.is-open { display: flex; flex-direction: column; gap: 8px; }
  #navegacao { max-height: calc(100dvh - 88px); overflow-y: auto; overscroll-behavior: contain; }
  .services-menu { display: block; }
  .services-toggle { width: 100%; }
  .services-dropdown { position: static; width: 100%; max-height: none; margin: 4px 0 12px; box-shadow: none; }
  .services-dropdown-heading { padding: 16px 18px; gap: 12px; font-size: .75rem; letter-spacing: .06em; }
  .services-catalog a { padding: 20px 18px; grid-template-columns: 24px 1fr; gap: 12px; }
  .catalog-title { font-size: 1.375rem; }
  .catalog-description { letter-spacing: .03em; }
  .catalog-arrow { display: none; }
  .services-all { padding: 18px; letter-spacing: .05em; }
  .hero-grid { gap: 20px; padding-block: 49px; }
  .hero h1 { font-size: 6.7vw; }
  .hero-eyebrow { font-size: .75rem; letter-spacing: .1em; }
  .hero-bottom { grid-template-columns: 1fr 1fr; gap: 23px; }
  .section { padding-block: 72px; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .section-intro>.eyebrow { padding-top: 0; }
  .service-grid { grid-template-columns: 1fr; gap: 20px; }
  .service { padding: 26px; }
  .service-top { margin-bottom: 18px; }
  .service-subtitle { margin-bottom: 12px; }
  .service p:not(.service-subtitle) { max-width: 570px; margin-bottom: 21px; }
  .process-grid { gap: 30px; }
  .fair-grid { gap: 35px; }
  .fair-heading h2 { font-size: 3.8rem; }
  .fair-section { padding-block: 72px; }
  .fair-content { padding-top: 20px; }
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .contact-grid { gap: 40px; }
  .contact-grid h2 { font-size: 3rem; }
  .contact-content>.button { padding-inline: 16px; }
  .footer-top>p { display: none; }
}
@media (max-width: 600px) {
  .container { width: calc(100% - 40px); }
  html { scroll-padding-top: 96px; }
  .header-inner { min-height: 79px; gap: 15px; }
  .brand { gap: 8px; }
  .brand-symbol { width: 47px; height: 47px; }
  .brand-name { font-size: 1.6rem; }
  .brand-name>span { font-size: .75rem; letter-spacing: .18em; margin-top: 6px; }
  .hero-topline { padding-block: 15px; font-size: .75rem; letter-spacing: .075em; }
  .hero-topline>span:first-child { max-width: 165px; }
  .route-arrow { margin-inline: 6px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 36px; padding-bottom: 28px; gap: 24px; }
  .hero-eyebrow { margin-bottom: 22px; }
  .hero h1 { font-size: clamp(3rem, 12.5vw, 4.7rem); line-height: 1.02; }
  .hero-description { margin-top: 23px; max-width: 385px; }
  .hero-actions { margin-top: 25px; gap: 22px; }
  .hero-actions>.button { width: 100%; justify-content: space-between; }
  .hero-visual .hero-photo { max-width: 420px; }
  .hero-bottom { gap: 24px 15px; padding-block: 25px; }
  .hero-bottom>a { flex-direction: column; align-items: flex-start; gap: 2px; }
  .hero-bottom>span { font-size: .875rem; }
  .hero-bottom>a>span { font-size: 1rem; }
  .section { padding-block: 56px; }
  .section-intro { gap: 20px; margin-bottom: 31px; }
  h2 { font-size: 2.5rem; }
  .section-intro>div>p { margin-top: 20px; }
  .service { padding: 24px; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-grid article { display: grid; grid-template-columns: 38px 1fr; gap: 0 20px; }
  .step { grid-row: 1/3; border: 0; padding: 0; margin: 0; line-height: 1; }
  .process-grid h3 { font-size: 1.125rem; }
  .fair-grid { grid-template-columns: 1fr; gap: 20px; }
  .fair-section { padding-block: 55px; }
  .fair-heading h2 { font-size: 3.9rem; margin-block: 24px; }
  .fair-content { padding-top: 20px; }
  .fair-lead { font-size: 1.125rem; }
  .fair-list { margin-top: 25px; }
  .faq-grid { gap: 29px; }
  .faq-list summary { padding-block: 22px; gap: 15px; }
  .contact-section { padding-block: 55px; }
  .contact-section .eyebrow { margin-bottom: 25px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid h2 { font-size: clamp(2.35rem, 10vw, 3.6rem); }
  .contact-content>.button { width: 100%; justify-content: space-between; margin-bottom: 28px; }
  .contact-detail { font-size: 1rem; }
  .footer-top { gap: 20px; }
  .footer-top .text-link { font-size: .8125rem; gap: 10px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  nav { padding-inline: 20px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }

/* Shared navigation and layouts for the independent pages. */
.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; }
#navegacao a[aria-current="page"] { color: var(--red); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 8px; }
.page-breadcrumb { position: static; display: flex; gap: 15px; align-items: center; padding-block: 22px; font-size: .875rem; color: var(--muted); background: transparent; border: 0; box-shadow: none; }
.page-breadcrumb a { padding: 0 !important; color: var(--red); text-decoration: underline; text-underline-offset: 4px; }
.page-breadcrumb>span:last-child { color: var(--ink); }
.inner-page { min-height: 100vh; display: flex; flex-direction: column; }
.inner-page main { flex: 1; }
.service-detail-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 30px; }
.inner-page .section { padding-block: 64px 84px; }
.inner-page h1 { font-family: var(--display); font-size: clamp(2.6rem, 4.5vw, 4.6rem); line-height: 1.08; letter-spacing: -.035em; font-weight: 400; }
.inner-page h1 em { color: var(--red); font-weight: 400; }
.inner-page .fair-heading h1 { font-size: clamp(3.6rem, 5.3vw, 5.2rem); line-height: 1.04; margin: 25px 0; }
.inner-page .fair-heading h1 em { color: var(--gold-light); }
.inner-page .contact-grid h1 { font-size: clamp(2.8rem, 4.5vw, 4.6rem); line-height: 1.13; }
.home-contact { background: #f5f1eb; border-top: 3px solid var(--red); border-bottom: 1px solid var(--gold); padding-block: 62px; }
.home-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.home-contact .eyebrow { color: var(--red); margin-bottom: 22px; }
.home-contact .button { flex-shrink: 0; }
@media (max-width: 900px) {
  .page-breadcrumb { flex-direction: row; align-items: center; }
  .home-contact-inner { align-items: flex-start; }
  .home-contact h2 { font-size: 2.5rem; }
}
@media (max-width: 600px) {
  .page-breadcrumb { padding-block: 18px; }
  .inner-page .section { padding-block: 35px 52px; }
  .inner-page h1 { font-size: 2.5rem; }
  .inner-page .fair-heading h1 { font-size: 3.6rem; }
  .inner-page .contact-grid h1 { font-size: clamp(2.3rem, 10vw, 3.5rem); }
  .home-contact { padding-block: 48px; }
  .home-contact-inner { flex-direction: column; gap: 28px; }
  .home-contact .button { width: 100%; justify-content: space-between; }
}

/* Expanded catalog and editorial service pages. */
.burgundy { color: var(--red); }
.masthead-lead { font-size: 1.125rem; line-height: 1.8; color: var(--muted); max-width: 680px; margin-top: 25px; }
.section-lead { color: var(--muted); margin-block: 24px; max-width: 620px; }
.service-masthead, .catalog-masthead, .about-masthead { padding: 56px 0 82px; }
.service-masthead { background: linear-gradient(180deg, #fff, #faf7f1); border-bottom: 1px solid var(--line); }
.service-masthead-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 80px; align-items: center; }
.inner-page .service-masthead h1, .inner-page .catalog-masthead h1, .inner-page .about-masthead h1 { font-size: clamp(2.8rem, 4.9vw, 4.9rem); line-height: 1.03; margin-top: 26px; }
.masthead-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; margin-top: 32px; }
.project-brief { background: var(--red-dark); color: white; padding: 34px; border-top: 3px solid var(--gold); }
.brief-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid #e6c77d55; color: var(--gold-light); font-size: .8125rem; letter-spacing: .1em; }
.brief-top>span:last-child { font: italic 2rem var(--display); }
.project-brief h2 { margin-block: 27px; font-size: 2.65rem; line-height: 1.06; }
.project-brief h2 em { color: var(--gold-light); }
.project-brief ul { list-style: none; padding: 0; margin: 0; }
.project-brief li { border-top: 1px solid #ffffff25; padding: 13px 0; font-size: .9375rem; line-height: 1.6; }
.brief-note { margin-top: 21px; font-size: .8125rem; line-height: 1.6; color: #e5c6c7; }
.scope-section, .related-section { padding-block: 90px; }
.section-heading { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: end; margin-bottom: 48px; }
.section-heading h2 { margin-top: 20px; font-size: clamp(2.4rem, 3.6vw, 3.6rem); }
.section-heading>p { color: var(--muted); max-width: 470px; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 50px; }
.scope-item { display: flex; gap: 25px; padding: 30px 0; border-top: 1px solid var(--line); }
.scope-index { padding-top: 3px; color: var(--red); font-size: .875rem; }
.scope-item h3 { font: 1.75rem/1.15 var(--display); margin-bottom: 14px; }
.scope-item p { color: var(--muted); }
.journey-section { padding-block: 85px; background: #191618; color: white; }
.journey-section .eyebrow, .journey-section h2 em { color: var(--gold-light); }
.journey-section .section-heading>p { color: #cfc6c7; }
.journey-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.journey-grid>li { border-top: 1px solid #b88b3988; padding-top: 25px; }
.journey-grid>li>span { color: var(--gold-light); font: italic 2rem var(--display); }
.journey-grid h3 { font-size: 1.125rem; font-weight: 500; margin: 20px 0 14px; }
.journey-grid p { color: #cfc6c7; font-size: .9375rem; }
.related-section { background: #faf7f1; border-top: 1px solid var(--line); }
.related-section h2 { font-size: 2.8rem; margin-top: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; margin-top: 30px; }
.related-link { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 0; border-block: 1px solid var(--line); font: 1.5rem/1.3 var(--display); }
.related-link span { color: var(--red); }
.related-link:hover { color: var(--red); }
.closing-cta { padding-block: 72px; border-top: 3px solid var(--red); background: #f1e9dc; }
.closing-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; }
.closing-grid h2 { margin-top: 20px; font-size: clamp(2.5rem,4vw,3.8rem); }
.closing-grid>div>p:not(.eyebrow) { color: var(--muted); margin-bottom: 26px; }
.catalog-masthead { background: #faf7f1; border-bottom: 1px solid var(--line); }
.catalog-section { padding-block: 70px 90px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.catalog-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); background: white; border-top: 3px solid var(--red); transition: border-color .2s, transform .2s; }
.catalog-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.catalog-card-top { display: flex; align-items: center; justify-content: space-between; color: var(--red); margin-bottom: 30px; font-size: .875rem; }
.catalog-card-top>span:last-child { font: italic 1.75rem var(--display); color: var(--gold); }
.catalog-card h3 { font: 1.9rem/1.15 var(--display); letter-spacing: -.02em; }
.catalog-card p { color: var(--muted); margin: 20px 0 28px; }
.catalog-card .text-link { margin-top: auto; align-self: flex-start; }
.fair-invitation { padding-block: 75px; background: #191618; color: white; }
.fair-invitation h2 em, .fair-invitation .eyebrow { color: var(--gold-light); }
.fair-invitation .closing-grid>div>p:not(.eyebrow) { color: #cfc6c7; }
.fair-invitation .button { background: var(--gold-light); color: var(--ink); }
.about-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 75px; align-items: center; }
.about-grid>div>p:not(.eyebrow):not(.masthead-lead) { margin-top: 20px; color: var(--muted); }
.about-grid .text-link { margin-top: 27px; }
.about-photo { background: var(--cream); border-bottom: 3px solid var(--gold); }
.about-photo img { display: block; width: 100%; height: 510px; object-fit: cover; }
.about-photo figcaption { padding: 18px 22px; color: var(--muted); font-size: .8125rem; line-height: 1.5; }
.brand-statement { padding-block: 85px; background: var(--red-dark); color: white; text-align: center; }
.brand-statement .eyebrow { color: var(--gold-light); }
.brand-statement h2 { margin: 23px 0; font-size: clamp(3rem,5vw,5rem); }
.brand-statement h2 em { color: var(--gold-light); }
.brand-statement p:last-child { max-width: 670px; margin-inline: auto; color: #ead4d4; }
.principles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.principles-grid article { border-top: 1px solid var(--gold); padding-top: 24px; }
.principles-grid article>span { color: var(--red); font-size: .875rem; }
.principles-grid h3 { margin: 20px 0; font: 1.9rem/1.15 var(--display); }
.principles-grid p { color: var(--muted); }
.founder-section { padding: 80px 0; background: #faf7f1; }
.founder-grid { display: grid; grid-template-columns: .65fr 1.35fr; align-items: center; gap: 85px; }
.founder-mark img { display: block; width: 100%; height: auto; max-height: 330px; object-fit: contain; }
.founder-grid h2 { margin-top: 20px; }
.founder-role { color: var(--red); margin: 15px 0 24px; }
.founder-grid p:not(.eyebrow):not(.founder-role) { color: var(--muted); margin-bottom: 25px; }
.experience-band { display: grid; grid-template-columns: repeat(4,1fr); border-block: 1px solid var(--line); padding-block: 35px; gap: 28px; }
.experience-band strong { display: block; font: 3.5rem/1.1 var(--display); color: var(--red); }
.experience-band span { display: block; font-size: .9375rem; margin-top: 8px; color: var(--muted); }
.language-list { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: 25px 0; }
.language-list li { padding: 6px 12px; border: 1px solid var(--line); background: white; font-size: .875rem; }
.offices-section { padding-block: 80px; }
.office-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 36px; }
.office-grid article { padding: 25px 0; border-top: 1px solid var(--gold); }
.office-grid span { font-size: .8125rem; color: var(--red); letter-spacing: .1em; }
.office-grid h3 { font: 2rem/1.2 var(--display); margin-top: 13px; }
.expanded-footer { padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1.2fr 1fr; gap: 60px; padding-bottom: 45px; }
.footer-brand p { margin: 24px 0 18px; color: var(--muted); }
.footer-brand>a:not(.brand) { display: block; margin-top: 9px; font-size: .875rem; overflow-wrap: anywhere; }
.footer-label { color: var(--red); font-size: .8125rem; font-weight: 600; letter-spacing: .1em; margin: 8px 0 24px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: .9375rem; }
.footer-links a:hover { color: var(--red); text-decoration: underline; }
/* The six-item menu stays usable in short viewports. */
.services-dropdown { width: min(540px,calc(100vw - 72px)); }
.services-catalog a { padding-block: 18px; }
.catalog-title { font-size: 1.375rem; }
.catalog-description { font-size: .75rem; margin-top: 7px; }
.services-dropdown-heading { padding-block: 17px; }
.services-all { position: sticky; bottom: 0; padding-block: 18px; }
.services-all:focus-visible { outline-offset: -5px; }
.page-breadcrumb { flex-wrap: wrap; }
@media (max-width: 1150px) {
  .service-masthead-grid, .section-heading, .closing-grid, .about-grid { gap: 45px; }
  .catalog-card { padding: 23px; }
  .header-inner { gap: 20px; }
  #navegacao { gap: 20px; }
  .founder-grid { gap: 50px; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .menu-toggle { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); background: transparent; padding: 9px 13px; color: var(--ink); min-height: 44px; font-size: .875rem; }
  #navegacao { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 20px 36px; background: white; border-bottom: 1px solid var(--line); max-height: calc(100dvh - 108px); overflow-y: auto; }
  #navegacao.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
  .services-menu { display: block; }
  .services-toggle { width: 100%; }
  .services-dropdown { position: static; width: 100%; max-height: none; margin: 4px 0 12px; box-shadow: none; }
}
@media (max-width: 900px) {
  .service-masthead-grid, .about-grid { grid-template-columns: 1fr; }
  .service-masthead, .catalog-masthead, .about-masthead { padding-block: 35px 55px; }
  .project-brief { display: grid; grid-template-columns: 1fr 1fr; gap: 0 35px; }
  .project-brief .brief-top { grid-column: 1 / -1; }
  .project-brief ul { margin-top: 28px; }
  .brief-note { grid-column: 1 / -1; }
  .catalog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .section-heading { gap: 35px; }
  .journey-grid { grid-template-columns: repeat(2,1fr); gap: 35px; }
  .related-grid { grid-template-columns: 1fr; gap: 0; }
  .related-link { border-top: 0; }
  .closing-grid { gap: 35px; }
  .about-photo img { height: 380px; }
  .footer-grid { gap: 35px; grid-template-columns: 1.25fr 1fr; }
  .footer-grid>div:last-child { grid-column: 2; }
  .services-dropdown { width: 100%; }
  .services-all { position: static; }
  #navegacao { gap: 8px; }
}
@media (max-width: 600px) {
  .scope-section, .related-section, .journey-section { padding-block: 55px; }
  .service-masthead-grid { gap: 35px; }
  .inner-page .service-masthead h1, .inner-page .catalog-masthead h1, .inner-page .about-masthead h1 { font-size: clamp(2.4rem,10.3vw,3.4rem); }
  .masthead-lead { font-size: 1rem; }
  .project-brief { display: block; padding: 25px; }
  .project-brief h2 { font-size: 2.4rem; }
  .catalog-grid, .scope-grid, .section-heading, .closing-grid, .principles-grid, .founder-grid, .office-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 24px; margin-bottom: 30px; }
  .section-heading h2 { font-size: 2.4rem; }
  .scope-item { gap: 20px; padding-block: 25px; }
  .catalog-card { padding: 25px; }
  .catalog-card-top { margin-bottom: 22px; }
  .catalog-section { padding-block: 40px 55px; }
  .journey-grid { grid-template-columns: 1fr; gap: 26px; }
  .journey-grid h3 { margin-top: 10px; }
  .closing-cta, .fair-invitation { padding-block: 50px; }
  .closing-grid { gap: 26px; }
  .closing-grid h2 { font-size: 2.5rem; }
  .about-photo img { height: 320px; }
  .founder-section { padding-block: 55px; }
  .founder-grid { gap: 28px; }
  .founder-mark img { max-height: 190px; }
  .experience-band { grid-template-columns: 1fr 1fr; gap: 25px; }
  .experience-band strong { font-size: 2.9rem; }
  .experience-band span { font-size: .875rem; }
  .office-grid { gap: 5px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid>div:last-child { grid-column: auto; }
  .catalog-title { font-size: 1.25rem; }
  .catalog-description { font-size: .75rem; }
  .services-catalog a { padding-block: 17px; }
}
.canton-masthead { background: var(--red-dark); color: white; padding-block: 70px 85px; }
.canton-hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 90px; align-items: center; }
.canton-masthead .eyebrow, .canton-masthead h1 em { color: var(--gold-light); }
.inner-page .canton-masthead h1 { font-size: clamp(3rem,5.4vw,5.3rem); margin-top: 24px; }
.canton-masthead .masthead-lead { color: #e4cdcf; }
.button-gold { background: var(--gold-light); color: var(--ink); }
.button-gold:hover { background: white; }
.fair-pass { padding: 35px; color: var(--ink); background: #faf7f1; border-top: 4px solid var(--gold); }
.fair-pass .eyebrow { color: var(--red); }
.fair-pass-city { font: 3.4rem/1.1 var(--display); margin-top: 28px; }
.fair-pass-city span { display: block; font: .875rem/1.5 var(--body); letter-spacing: .25em; margin-top: 15px; color: var(--muted); }
.fair-pass-date { display: flex; justify-content: space-between; align-items: center; gap: 14px; border-block: 1px solid var(--line); padding-block: 23px; margin: 27px 0 23px; font-size: 1.125rem; color: var(--red); }
.fair-pass>p:not(.eyebrow):not(.fair-pass-city) { color: var(--muted); font-size: .9375rem; }
.fair-pass-bottom { display: flex; justify-content: space-between; align-items: end; margin-top: 28px; color: var(--red); }
.fair-pass-bottom span { font-size: .8125rem; letter-spacing: .15em; }
.fair-pass-bottom strong { font: 3rem/1 var(--display); }
.phase-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.phase-card { padding: 30px; background: #faf7f1; border: 1px solid var(--line); border-top: 3px solid var(--red); display: flex; flex-direction: column; }
.phase-card>.eyebrow { color: var(--red); }
.phase-card h3 { font: 2.3rem/1.15 var(--display); margin: 24px 0; color: var(--red); }
.phase-card h3>span { display: block; font-size: 1.5rem; color: var(--ink); margin-top: 5px; }
.phase-theme { font-size: 1.125rem; font-weight: 550; margin-bottom: 14px; }
.phase-card>p:not(.eyebrow):not(.phase-theme) { color: var(--muted); margin-bottom: 25px; }
.phase-card .text-link { margin-top: auto; align-self: flex-start; }
.source-note { color: var(--muted); font-size: .8125rem; margin-top: 24px; max-width: 900px; }
.source-note a { text-decoration: underline; text-underline-offset: 3px; }
.fair-journey { grid-template-columns: repeat(3,1fr); }
.practical-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 90px; align-items: start; }
.practical-grid h2 { margin-top: 20px; }
.fair-facts { margin-block: 32px; }
.fair-facts>div { border-top: 1px solid var(--line); padding-block: 19px; display: grid; grid-template-columns: 110px 1fr; gap: 24px; }
.fair-facts dt { font-weight: 500; color: var(--red); font-size: .875rem; }
.fair-facts dd { margin: 0; color: var(--muted); }
.travel-note { background: #faf7f1; padding: 36px; border: 1px solid var(--line); border-top: 3px solid var(--gold); }
.travel-note .eyebrow { color: var(--red); }
.travel-note h3 { font: 2.7rem/1.1 var(--display); margin: 25px 0; }
.travel-note p { color: var(--muted); margin-bottom: 22px; }
.inquiry-section { padding-block: 85px; background: #f1e9dc; border-block: 1px solid var(--line); }
.inquiry-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; }
.inquiry-grid h2 { margin-top: 20px; }
.contact-mini { font-size: .9375rem; }
.contact-mini a { color: var(--red); text-decoration: underline; overflow-wrap: anywhere; }
.inquiry-form { padding: 30px; background: white; border-top: 3px solid var(--red); }
.inquiry-form label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: 22px; }
.inquiry-form label>span { font-weight: 400; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { display: block; width: 100%; min-width: 0; margin-top: 9px; border: 1px solid #cec5b9; padding: 12px; color: var(--ink); background: #fff; font: 1rem/1.5 var(--body); border-radius: 0; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form :is(input, select, textarea):focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.inquiry-form .button { width: 100%; cursor: pointer; }
.form-note { font-size: .8125rem; color: var(--muted); margin-top: 18px; line-height: 1.6; }
@media (max-width: 1150px) { .canton-hero-grid, .practical-grid, .inquiry-grid { gap: 45px; } .phase-card { padding: 24px; } }
@media (max-width: 900px) {
  .canton-hero-grid, .practical-grid, .inquiry-grid { grid-template-columns: 1fr; }
  .canton-masthead { padding-block: 50px; }
  .fair-pass { max-width: 580px; }
  .phase-grid { grid-template-columns: 1fr; }
  .phase-card h3>span { display: inline; margin-left: 10px; }
  .phase-card h3 { margin-block: 20px; }
  .practical-grid, .inquiry-grid { gap: 35px; }
}
@media (max-width: 600px) {
  .inner-page .canton-masthead h1 { font-size: clamp(2.65rem,11vw,3.6rem); }
  .fair-pass { padding: 26px; }
  .fair-pass-city { font-size: 2.9rem; }
  .fair-journey { grid-template-columns: 1fr; }
  .fair-facts>div { grid-template-columns: 1fr; gap: 8px; }
  .travel-note { padding: 28px; }
  .inquiry-section { padding-block: 55px; }
  .inquiry-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
