:root {
    --black: #050505;
    --black-soft: #0e0e10;
    --ink: #161616;
    --gold: #d4af5a;
    --gold-light: #f1d996;
    --gold-dark: #9b7428;
    --text: #f7f1e4;
    --muted: #c7bdad;
    --line: rgba(212, 175, 90, 0.22);
    --card: rgba(16, 16, 18, 0.82);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius-lg: 0px;
    --radius-md: 0px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 90, 0.14), transparent 32rem),
        linear-gradient(180deg, #020202 0%, #080808 46%, #030303 100%);
    color: var(--text);
    line-height: 1.65;
    min-width: 320px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
}

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

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

button,
input,
textarea {
    font: inherit;
}

button,
input,
textarea,
select {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0 !important;
}


.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding: clamp(72px, 10vw, 132px) 0;
    scroll-margin-top: 92px;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 1000;
    transform: translateY(-140%);
    background: var(--gold);
    color: #080808;
    padding: 10px 14px;
    border-radius: 0;
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(4, 4, 5, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212, 175, 90, 0.12);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand img {
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(212, 175, 90, 0.25);
}

.brand strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.14rem;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--gold-light);
}

.brand small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.76rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    color: var(--muted);
    padding: 10px 13px;
    border-radius: 0;
    font-size: 0.95rem;
    transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--gold-light);
    background: rgba(212, 175, 90, 0.1);
    outline: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 0;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--gold-light);
    margin: 4px auto;
    transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
    overflow: clip;
    padding-top: clamp(54px, 8vw, 96px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.86), rgba(5, 5, 5, 0.62)),
        url("../img/hero-bench.jpg") center center / cover no-repeat;
    opacity: 0.54;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -18% 30%;
    height: 38%;
    background: radial-gradient(circle, rgba(212, 175, 90, 0.2), transparent 62%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.78fr);
    gap: clamp(36px, 7vw, 92px);
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    text-wrap: balance;
}

h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 7.2vw, 6.2rem);
    margin-bottom: 24px;
    letter-spacing: -0.055em;
}

h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    margin-bottom: 22px;
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.lead {
    max-width: 760px;
    color: #eee3d0;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    margin-bottom: 32px;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 20px;
    border-radius: 0;
    font-weight: 800;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.btn-primary {
    color: #0b0b0b;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    box-shadow: 0 20px 50px rgba(212, 175, 90, 0.22);
}

.btn-secondary {
    color: var(--gold-light);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.trust-list li {
    border: 1px solid rgba(212, 175, 90, 0.2);
    color: var(--muted);
    border-radius: 0;
    padding: 7px 12px;
    background: rgba(0, 0, 0, 0.25);
    font-size: 0.9rem;
}

.hero-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(212, 175, 90, 0.25), rgba(255, 255, 255, 0.04));
    padding: 1px;
    box-shadow: var(--shadow);
}

.hero-card picture {
    display: block;
    overflow: hidden;
    border-radius: 0;
    background: var(--black);
}

.hero-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.two-col,
.craft-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: center;
}

.portrait {
    border-radius: 0;
    overflow: hidden;
    background: #111;
    box-shadow: var(--shadow);
}

.portrait img {
    width: 100%;
    aspect-ratio: 0.95 / 1;
    object-fit: cover;
}

.section-copy p,
.section-heading p {
    color: var(--muted);
    font-size: 1.03rem;
}

.highlight {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(212, 175, 90, 0.07);
}

.highlight strong {
    color: var(--gold-light);
}


.precision-section {
    padding-top: 34px;
    padding-bottom: clamp(150px, 18vw, 220px);
}

.precision-visual {
    position: relative;
    min-height: 780px;
    border: 1px solid var(--line);
    background: #0b0b0b;
    overflow: visible;
    box-shadow: var(--shadow);
}

.precision-media,
.precision-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.precision-media {
    position: absolute;
    inset: 0;
}

.precision-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35));
}

.precision-media img {
    object-fit: cover;
}

.precision-panel {
    position: absolute;
    left: 50%;
    bottom: clamp(-110px, -8vw, -72px);
    transform: translateX(-50%);
    width: min(86%, 980px);
    z-index: 2;
    padding: clamp(26px, 4vw, 44px);
    background: rgba(247, 241, 228, 0.88);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #17120b;
    text-align: center;
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.precision-panel .eyebrow {
    color: #5e4820;
    margin-bottom: 10px;
}

.precision-panel h2 {
    color: #16120d;
    font-size: clamp(1.6rem, 3.2vw, 2.8rem);
    margin-bottom: 18px;
}

.precision-panel p {
    color: #1f1a13;
    margin-left: auto;
    margin-right: auto;
    max-width: 920px;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.services {
    background: linear-gradient(180deg, rgba(212, 175, 90, 0.05), rgba(212, 175, 90, 0.015));
    border-block: 1px solid rgba(212, 175, 90, 0.1);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 280px;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: clamp(24px, 3vw, 34px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
        var(--card);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 44px;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 800;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.craft-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-weight: 800;
    border-bottom: 1px solid currentColor;
    transition: transform 180ms ease;
}

.text-link::after {
    content: "→";
}

.image-stack {
    position: relative;
    min-height: 540px;
}

.image-stack picture {
    display: block;
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #111;
}

.stack-main {
    inset: 0 11% 10% 0;
    border-radius: 0;
}

.stack-small {
    right: 0;
    bottom: 0;
    width: 52%;
    border-radius: 0;
}

.image-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery {
    padding-top: 38px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #111;
    padding: 0;
    cursor: zoom-in;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease, opacity 420ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.04);
    opacity: 0.86;
}

.gallery-item:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}

.contact {
    padding-top: 46px;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: clamp(28px, 6vw, 64px);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 90, 0.16), transparent 34rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.contact-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.contact-actions {
    flex-direction: column;
}

.contact-link {
    display: block;
    border: 1px solid rgba(212, 175, 90, 0.2);
    border-radius: 0;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.24);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 90, 0.52);
    background: rgba(212, 175, 90, 0.07);
    outline: none;
}

.contact-link span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-link strong {
    color: var(--gold-light);
    font-size: clamp(1rem, 2vw, 1.25rem);
    overflow-wrap: anywhere;
}

.site-footer {
    border-top: 1px solid rgba(212, 175, 90, 0.12);
    padding: 28px 0;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-inner p {
    margin: 0;
}

.footer-credit {
    text-align: right;
    font-size: 12px;
}

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

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: min(1120px, 94vw);
    max-height: 86vh;
    border-radius: 0;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.58);
    color: var(--gold-light);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
    transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 920px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 76px;
        right: 20px;
        left: 20px;
        display: grid;
        gap: 6px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 0;
        background: rgba(7, 7, 8, 0.96);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        padding: 13px 14px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid,
    .two-col,
    .craft-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 520px;
        margin-inline: auto;
    }

    .portrait {
        max-width: 620px;
    }

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

    .precision-section {
        padding-bottom: 170px;
    }

    .precision-visual {
        min-height: 720px;
    }

    .precision-panel {
        width: min(92%, 860px);
        bottom: -85px;
    }

    .service-card {
        min-height: auto;
    }

    .service-number {
        margin-bottom: 28px;
    }

    .image-stack {
        min-height: 460px;
    }

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

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .brand small {
        display: none;
    }

    .section {
        padding: 64px 0;
    }

    h1 {
        font-size: clamp(3rem, 16vw, 4.5rem);
    }

    .hero-actions,
    .btn,
    .contact-actions {
        width: 100%;
    }

    .btn {
        justify-content: center;
    }

    .trust-list {
        display: grid;
    }

    .precision-section {
        padding-bottom: 64px;
    }

    .precision-visual {
        min-height: auto;
    }

    .precision-media {
        position: static;
        aspect-ratio: 16 / 11;
    }

    .precision-panel {
        position: static;
        transform: none;
        width: 100%;
        padding: 24px 18px;
        background: rgba(247, 241, 228, 0.92);
        box-shadow: none;
    }

    .image-stack {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .image-stack picture {
        position: static;
    }

    .stack-small {
        width: 100%;
    }

    .stack-main img,
    .stack-small img {
        aspect-ratio: 4 / 3;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-item:first-child {
        grid-column: auto;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-credit {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
    }

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

/* Garantia global: sem arredondamentos em qualquer elemento. */
*,
*::before,
*::after {
    border-radius: 0 !important;
}

svg rect,
svg image,
svg foreignObject {
    rx: 0 !important;
    ry: 0 !important;
}

button,
input,
textarea,
select {
    appearance: none !important;
    -webkit-appearance: none !important;
}
