:root {
    --black: #080808;
    --black-soft: #10100f;
    --surface: #151513;
    --surface-light: #1c1b18;
    --gold: #d9a928;
    --gold-light: #f3cf68;
    --gold-dark: #8f6711;
    --white: #f7f4ec;
    --muted: #aaa69c;
    --line: rgba(255, 255, 255, 0.11);
    --line-gold: rgba(217, 169, 40, 0.35);
    --container: 1180px;
    --radius: 6px;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--white);
    background: var(--black);
    font-family: "Segoe UI", Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    content: "";
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

body.menu-open {
    overflow: hidden;
}

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

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

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

:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 10px 16px;
    color: var(--black);
    background: var(--gold-light);
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(8, 8, 8, 0.88);
    border-color: var(--line);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

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

.brand {
    position: relative;
    z-index: 2;
    width: 168px;
}

.brand img {
    width: 100%;
}

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

.site-nav > a:not(.nav-cta) {
    position: relative;
    color: #d8d5cc;
    font-size: 0.86rem;
    font-weight: 650;
    letter-spacing: 0.025em;
}

.site-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    min-height: 44px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    color: #12100a;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: 1px solid var(--gold-light);
    font-size: 0.82rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    box-shadow: 0 10px 28px rgba(217, 169, 40, 0.22);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 13px 11px;
    border: 1px solid var(--line);
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

.hero {
    position: relative;
    min-height: 920px;
    padding: 145px 0 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 18%, rgba(217, 169, 40, 0.12), transparent 24%),
        linear-gradient(125deg, #090909 0%, #0d0d0c 60%, #13120f 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.2;
    background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: linear-gradient(to right, black, transparent 75%);
    mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-glow {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(217, 169, 40, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 120px rgba(217, 169, 40, 0.05), inset 0 0 80px rgba(217, 169, 40, 0.03);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 625px;
    align-items: center;
    gap: 60px;
}

.eyebrow {
    display: flex;
    margin: 0 0 22px;
    align-items: center;
    gap: 11px;
    color: var(--gold-light);
    font-size: 0.73rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.eyebrow span {
    width: 26px;
    height: 1px;
    background: var(--gold);
}

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

h1,
h2 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 0.99;
    letter-spacing: -0.045em;
}

h1 {
    max-width: 720px;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
}

h2 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

h1 em,
h2 em {
    color: var(--gold-light);
    font-weight: 400;
}

.hero-lead {
    max-width: 630px;
    margin-bottom: 34px;
    color: #c8c4ba;
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.hero-actions,
.location-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.button {
    display: inline-flex;
    min-height: 56px;
    padding: 0 26px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.055em;
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
    color: #151109;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: var(--gold-light);
}

.button-primary:hover {
    box-shadow: 0 14px 34px rgba(217, 169, 40, 0.22);
    transform: translateY(-3px);
}

.button-outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

.button-outline:hover {
    color: var(--gold-light);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.button-large {
    min-height: 64px;
    padding-inline: 34px;
}

.button-icon {
    display: inline-grid;
    width: 26px;
    height: 26px;
    place-items: center;
    color: var(--gold-light);
    background: #12100b;
    border-radius: 50%;
}

.text-link {
    color: #dad6cc;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
    color: var(--gold-light);
    border-color: var(--gold);
}

.hero-note {
    margin: 18px 0 0;
    color: #858178;
    font-size: 0.78rem;
}

.hero-visual {
    position: relative;
    align-self: end;
}

.hero-image-frame {
    position: relative;
    max-width: 485px;
    margin-left: auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow);
}

.hero-image-frame::before,
.about-visual::before {
    position: absolute;
    inset: 13px;
    z-index: 2;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(243, 207, 104, 0.22);
}

.hero-image-frame img {
    width: 100%;
    aspect-ratio: 0.91;
    object-fit: cover;
    object-position: center 26%;
    filter: saturate(0.72) contrast(1.08);
}

.image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.7), transparent 38%);
}

.experience-card {
    position: absolute;
    bottom: 52px;
    left: -34px;
    z-index: 3;
    display: flex;
    min-width: 220px;
    padding: 18px 22px;
    align-items: center;
    gap: 15px;
    color: #14110a;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.experience-card strong {
    font-family: Georgia, serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
}

.experience-card span {
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.precision-badge {
    position: absolute;
    top: 42px;
    right: -42px;
    display: flex;
    padding: 11px 15px;
    align-items: center;
    gap: 9px;
    color: #d6d2c8;
    background: rgba(8, 8, 8, 0.82);
    border: 1px solid var(--line);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transform: rotate(90deg) translateX(100%);
    transform-origin: right top;
}

.precision-badge span {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold);
}

.trust-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 54px;
    border-top: 1px solid var(--line);
}

.trust-strip > div {
    display: flex;
    min-height: 115px;
    padding: 22px 32px;
    align-items: center;
    gap: 18px;
    border-right: 1px solid var(--line);
}

.trust-strip > div:first-child {
    border-left: 1px solid var(--line);
}

.trust-strip strong {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 1.7rem;
    font-weight: 400;
}

.trust-strip span {
    color: #c0bcb2;
    font-size: 0.8rem;
    font-weight: 750;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section {
    position: relative;
    padding: 130px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    margin-bottom: 60px;
    align-items: end;
    gap: 50px;
}

.section-heading h2 {
    max-width: 770px;
    margin-bottom: 0;
}

.section-heading > p {
    margin: 0 0 8px;
    color: var(--muted);
}

.services {
    background: #0c0c0b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;
    min-height: 340px;
    padding: 38px 34px;
    overflow: hidden;
    background: var(--black-soft);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-card::after {
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 110px;
    height: 110px;
    content: "";
    border: 1px solid rgba(217, 169, 40, 0.15);
    border-radius: 50%;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
    z-index: 2;
    background: #191813;
    transform: translateY(-5px);
}

.service-card:hover::after {
    border-color: var(--gold);
    transform: scale(1.5);
}

.service-card.featured {
    color: #17130b;
    background: linear-gradient(145deg, var(--gold-light), #c79318);
}

.service-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: #6e6b64;
    font-family: Georgia, serif;
    font-size: 0.8rem;
}

.featured .service-number {
    color: rgba(20, 16, 7, 0.6);
}

.service-symbol {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 58px;
    place-items: center;
    color: var(--gold-light);
    border: 1px solid var(--line-gold);
    border-radius: 50%;
    font-size: 1.25rem;
}

.featured .service-symbol {
    color: #18130a;
    border-color: rgba(20, 16, 7, 0.35);
}

.service-card h3 {
    margin-bottom: 14px;
    font-family: Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
}

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

.featured p {
    color: rgba(20, 16, 7, 0.78);
}

.service-card > a {
    display: inline-flex;
    margin-top: 22px;
    gap: 8px;
    border-bottom: 1px solid rgba(20, 16, 7, 0.3);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(217, 169, 40, 0.045) 1px, transparent 1px),
        var(--black);
    background-size: 120px 100%;
}

.process-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
}

.process-intro {
    position: sticky;
    top: 125px;
    align-self: start;
}

.process-intro h2 {
    font-size: clamp(2.7rem, 4.4vw, 4.4rem);
}

.process-intro > p:not(.eyebrow) {
    max-width: 480px;
    margin-bottom: 32px;
    color: var(--muted);
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 70px 1fr;
    min-height: 150px;
    padding: 30px 0;
    align-items: start;
    border-top: 1px solid var(--line);
}

.process-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.process-list > li > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--black);
    background: var(--gold);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 1.1rem;
}

.process-list h3 {
    margin-bottom: 6px;
    font-family: Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.process-list p {
    margin: 0;
    color: var(--muted);
}

.advantages {
    background: var(--gold);
    color: #15120b;
}

.advantages::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.2;
    background: radial-gradient(circle at 20% 20%, #fff3b2, transparent 30%), linear-gradient(120deg, transparent 60%, rgba(90, 60, 0, 0.18));
}

.centered {
    position: relative;
    display: block;
    text-align: center;
}

.centered .eyebrow {
    justify-content: center;
    color: #3b2b07;
}

.centered .eyebrow span {
    background: #3b2b07;
}

.centered h2 {
    margin-inline: auto;
}

.centered h2 em {
    color: #fff4c5;
}

.advantages-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(20, 16, 7, 0.25);
    border-left: 1px solid rgba(20, 16, 7, 0.25);
}

.advantage {
    min-height: 300px;
    padding: 34px 28px;
    border-right: 1px solid rgba(20, 16, 7, 0.25);
    border-bottom: 1px solid rgba(20, 16, 7, 0.25);
}

.advantage-icon {
    display: block;
    margin-bottom: 70px;
    font-family: Georgia, serif;
    font-size: 2rem;
}

.advantage h3 {
    margin-bottom: 10px;
    font-family: Georgia, serif;
    font-size: 1.42rem;
    font-weight: 600;
}

.advantage p {
    margin: 0;
    color: rgba(20, 16, 7, 0.76);
    font-size: 0.9rem;
}

.about {
    background: #0d0d0c;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    aspect-ratio: 1.05;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.07);
}

.about-caption {
    position: absolute;
    right: -30px;
    bottom: -25px;
    z-index: 3;
    padding: 19px 24px;
    color: #d4d0c6;
    background: var(--surface-light);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-caption span {
    color: var(--gold-light);
    font-weight: 900;
}

.about-lead {
    color: var(--white) !important;
    font-family: Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.4;
}

.about-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.signature {
    margin-top: 38px;
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 2.1rem;
    font-style: italic;
}

.signature small {
    display: block;
    margin-top: 3px;
    color: #8e8a81;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.reviews {
    padding-bottom: 50px;
    background: #0d0d0c;
}

.reviews-shell {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    padding: 70px;
    overflow: hidden;
    background: linear-gradient(120deg, #191813, #0d0d0c);
    border: 1px solid var(--line);
}

.reviews-shell::before {
    position: absolute;
    top: -170px;
    right: -80px;
    width: 520px;
    height: 520px;
    content: "";
    border: 1px solid var(--line-gold);
    border-radius: 50%;
    box-shadow: inset 0 0 100px rgba(217, 169, 40, 0.04);
}

.reviews-copy {
    position: relative;
    z-index: 2;
}

.reviews-copy h2 {
    font-size: clamp(2.6rem, 4.4vw, 4.3rem);
}

.reviews-copy > p:not(.eyebrow) {
    max-width: 570px;
    margin-bottom: 28px;
    color: var(--muted);
}

.review-mark {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.stars {
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: 1.25rem;
    letter-spacing: 0.22em;
}

.review-mark strong {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.15;
}

.review-mark > span {
    margin-top: 17px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.social-section {
    padding-top: 50px;
    background: #0d0d0c;
}

.social-card {
    display: flex;
    padding: 58px 65px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--gold);
    color: #16120a;
}

.social-card .eyebrow {
    color: #4c3609;
}

.social-card .eyebrow span {
    background: #4c3609;
}

.social-card h2 {
    margin: 0;
    font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.social-card h2 em {
    color: #fff3bf;
}

.instagram-link {
    display: flex;
    min-width: 330px;
    padding: 20px 24px;
    align-items: center;
    gap: 16px;
    color: var(--white);
    background: #12110e;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-link:hover {
    box-shadow: 0 16px 38px rgba(30, 20, 0, 0.24);
    transform: translateY(-3px);
}

.instagram-link > span {
    color: var(--gold-light);
    font-size: 1.9rem;
}

.instagram-link div {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.instagram-link small {
    color: var(--muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.instagram-link strong {
    font-size: 0.94rem;
}

.instagram-link b {
    color: var(--gold-light);
}

.faq {
    background: var(--black);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;
}

.faq-heading {
    position: sticky;
    top: 125px;
    align-self: start;
}

.faq-heading h2 {
    font-size: clamp(2.7rem, 4.5vw, 4.4rem);
}

.faq-heading > p:not(.eyebrow) {
    color: var(--muted);
}

.accordion details {
    border-top: 1px solid var(--line);
}

.accordion details:last-child {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-family: Georgia, serif;
    font-size: 1.25rem;
    list-style: none;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--gold-light);
    border: 1px solid var(--line-gold);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.accordion details[open] summary span {
    color: #17120a;
    background: var(--gold);
    transform: rotate(45deg);
}

.accordion details p {
    max-width: 700px;
    padding: 0 55px 28px 0;
    color: var(--muted);
}

.location {
    overflow: hidden;
    background: #10100f;
}

.location-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.location-copy h2 {
    font-size: clamp(2.8rem, 4.6vw, 4.5rem);
}

.contact-list {
    margin: 38px 0;
    border-top: 1px solid var(--line);
}

.contact-list > div {
    display: grid;
    grid-template-columns: 105px 1fr;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
}

.contact-list span {
    color: var(--gold-light);
    font-size: 0.67rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-list strong {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.location-image {
    position: relative;
    display: block;
    min-height: 570px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.location-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(8, 8, 8, 0.82), transparent 54%);
}

.location-image img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    filter: saturate(0.65) contrast(1.08);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.location-image:hover img {
    filter: saturate(0.9) contrast(1.04);
    transform: scale(1.03);
}

.map-pin {
    position: absolute;
    top: 42%;
    left: 52%;
    z-index: 2;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    color: #151109;
    background: var(--gold-light);
    border: 8px solid rgba(8, 8, 8, 0.55);
    border-radius: 50%;
    font-size: 1.6rem;
    box-shadow: 0 0 0 16px rgba(217, 169, 40, 0.16);
}

.map-label {
    position: absolute;
    right: 28px;
    bottom: 24px;
    left: 28px;
    z-index: 2;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.final-cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(217, 169, 40, 0.13), transparent 38%),
        #080808;
}

.final-cta::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 580px;
    height: 580px;
    content: "";
    border: 1px solid rgba(217, 169, 40, 0.11);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.final-cta-inner {
    position: relative;
    z-index: 2;
}

.final-cta-inner > img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: min(780px, 90vw);
    opacity: 0.035;
    transform: translate(-50%, -50%);
}

.final-cta .eyebrow {
    justify-content: center;
}

.final-cta h2 {
    max-width: 900px;
    margin-inline: auto;
}

.final-cta p:not(.eyebrow) {
    max-width: 600px;
    margin: 0 auto 34px;
    color: var(--muted);
}

.site-footer {
    background: #050505;
    border-top: 1px solid var(--line);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    padding-top: 58px;
    padding-bottom: 48px;
    gap: 55px;
}

.footer-brand {
    width: 190px;
}

.footer-main > div > span {
    display: block;
    margin-bottom: 11px;
    color: var(--gold-light);
    font-size: 0.67rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-main p {
    margin: 0;
    color: #99958c;
    font-size: 0.82rem;
}

.footer-main a:hover,
.footer-bottom a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #77736b;
    border-top: 1px solid var(--line);
    font-size: 0.75rem;
}

.footer-bottom p {
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: flex;
    min-height: 54px;
    padding: 0 21px 0 12px;
    align-items: center;
    gap: 10px;
    color: #062f18;
    background: #36d978;
    border: 1px solid #80f2ae;
    border-radius: 30px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    box-shadow: 0 16px 42px rgba(54, 217, 120, 0.2);
    transform: translateY(-3px);
}

.floating-whatsapp span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: white;
    background: #0b8d44;
    border-radius: 50%;
    font-size: 1.3rem;
}

.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.legal-page {
    background: #0c0c0b;
}

.legal-content {
    min-height: 80vh;
    padding: 160px 0 100px;
}

.legal-shell {
    max-width: 880px;
}

.legal-shell h1 {
    font-size: clamp(3.2rem, 7vw, 5.7rem);
}

.legal-updated {
    margin-bottom: 55px;
    color: var(--muted);
    font-size: 0.84rem;
}

.legal-text {
    padding: 12px 55px 30px;
    background: #121210;
    border: 1px solid var(--line);
}

.legal-text section {
    padding: 36px 0 24px;
    border-bottom: 1px solid var(--line);
}

.legal-text section:last-child {
    border-bottom: 0;
}

.legal-text h2 {
    margin-bottom: 12px;
    font-family: Georgia, serif;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.legal-text p {
    margin-bottom: 0;
    color: var(--muted);
}

.legal-text a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-footer .footer-bottom {
    border-top: 0;
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 18px;
    }

    .site-nav > a:not(.nav-cta) {
        font-size: 0.78rem;
    }

    .hero-grid {
        gap: 32px;
    }

    .experience-card {
        left: -15px;
    }

    .process-grid,
    .faq-grid {
        gap: 60px;
    }

    .about-grid,
    .location-grid {
        gap: 55px;
    }

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

    .footer-main {
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .header-inner {
        min-height: 74px;
    }

    .brand {
        width: 145px;
    }

    .menu-toggle {
        position: relative;
        z-index: 102;
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 101;
        display: flex;
        padding: 115px 28px 40px;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: rgba(8, 8, 8, 0.98);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .site-nav > a:not(.nav-cta) {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        font-family: Georgia, serif;
        font-size: 1.5rem;
        font-weight: 500;
    }

    .site-nav .nav-cta {
        margin-top: 24px;
    }

    .hero {
        min-height: auto;
        padding-top: 125px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-visual {
        width: min(560px, 92%);
        margin-inline: auto;
    }

    .hero-image-frame {
        max-width: none;
    }

    .precision-badge {
        right: -35px;
    }

    .trust-strip {
        margin-top: 70px;
    }

    .trust-strip > div {
        padding-inline: 18px;
    }

    .section {
        padding: 100px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading > p {
        max-width: 620px;
    }

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

    .process-grid,
    .about-grid,
    .faq-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .process-intro,
    .faq-heading {
        position: static;
    }

    .about-visual {
        max-width: 680px;
    }

    .about-caption {
        right: 18px;
    }

    .reviews-shell {
        grid-template-columns: 1fr;
        padding: 55px 45px;
        gap: 55px;
    }

    .review-mark {
        align-items: flex-start;
        text-align: left;
    }

    .social-card {
        align-items: stretch;
        flex-direction: column;
    }

    .instagram-link {
        min-width: 0;
    }

    .location-image,
    .location-image img {
        min-height: 500px;
        height: 500px;
    }

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

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

    .hero {
        padding-top: 112px;
    }

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

    h2 {
        font-size: clamp(2.5rem, 11.8vw, 3.7rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions,
    .location-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .location-actions .button {
        width: 100%;
    }

    .text-link {
        align-self: flex-start;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-image-frame img {
        aspect-ratio: 0.85;
    }

    .experience-card {
        bottom: 24px;
        left: 14px;
        min-width: 185px;
        padding: 14px 17px;
    }

    .experience-card strong {
        font-size: 2.5rem;
    }

    .precision-badge {
        display: none;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-strip > div,
    .trust-strip > div:first-child {
        min-height: 88px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 300px;
    }

    .service-symbol {
        margin-bottom: 42px;
    }

    .process-list li {
        grid-template-columns: 54px 1fr;
    }

    .advantage {
        min-height: 245px;
    }

    .advantage-icon {
        margin-bottom: 45px;
    }

    .about-caption {
        right: 12px;
        bottom: -20px;
    }

    .reviews-shell,
    .social-card {
        width: 100%;
        padding: 42px 25px;
    }

    .reviews-shell::before {
        right: -250px;
    }

    .instagram-link {
        padding: 17px;
    }

    .instagram-link strong {
        font-size: 0.8rem;
    }

    .accordion summary {
        font-size: 1.08rem;
    }

    .location-image,
    .location-image img {
        min-height: 390px;
        height: 390px;
    }

    .final-cta {
        padding: 100px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        padding: 22px 0 90px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }

    .legal-back {
        min-height: 40px;
        padding-inline: 14px;
        font-size: 0.68rem;
    }

    .legal-content {
        padding: 130px 0 70px;
    }

    .legal-text {
        padding: 6px 22px 20px;
    }
}

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

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

@media print {
    .site-header,
    .floating-whatsapp,
    .final-cta,
    .site-nav {
        display: none !important;
    }

    body {
        color: #111;
        background: #fff;
    }

    .legal-content {
        padding-top: 20px;
    }

    .legal-text {
        padding: 0;
        background: #fff;
        border: 0;
    }
}
