/* =========================================================
   EC CUSTOM HOME CONSTRUCTION
   ENHANCED SIGNATURE HOMEPAGE
   Global Foundation Styles
========================================================= */

:root {
    --black: #0d0b09;
    --black-soft: #15110d;
    --brown-deep: #21170f;
    --brown: #4a3424;
    --brown-soft: #76563a;

    --cream: #f3eadb;
    --cream-soft: #eadfce;
    --cream-deep: #d8c7ae;

    --gold: #c89a45;
    --gold-bright: #ddb86f;
    --gold-muted: #a77a32;

    --white: #fffdf8;
    --text-dark: #211a14;
    --text-soft: #66594d;
    --text-light: #f8f1e7;
    --text-muted-light: #cdbfaa;

    --line-light: rgba(73, 50, 30, 0.18);
    --line-dark: rgba(215, 177, 103, 0.28);

    --sidebar-width: 250px;
    --content-max: 1500px;

    --shadow-soft: 0 18px 45px rgba(32, 22, 14, 0.12);
    --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.34);

    --transition: 0.35s ease;
}

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--black);
    color: var(--text-dark);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
.brand-monogram,
.mobile-monogram,
.brand-name,
.project-card h3,
.testimonial-section blockquote {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h1,
h2,
h3,
p {
    text-wrap: pretty;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 9999;
    padding: 12px 18px;
    background: var(--gold);
    color: var(--black);
    font-weight: 800;
    transform: translateY(-180%);
    transition: transform var(--transition);
}

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

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* =========================================================
   DESKTOP SIDEBAR
========================================================= */

.site-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1000;
    width: var(--sidebar-width);
    color: var(--text-light);
    background:
        linear-gradient(rgba(7, 6, 5, 0.58), rgba(7, 6, 5, 0.84)),
        url("../images/marble-sidebar.webp") center / cover no-repeat;
    border-right: 1px solid rgba(214, 173, 95, 0.38);
    box-shadow: 18px 0 45px rgba(0, 0, 0, 0.18);
}

.sidebar-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 35% 12%, rgba(218, 181, 109, 0.15), transparent 28%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 100%);
}

.sidebar-inner {
    position: relative;
    z-index: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 42px 28px 34px;
}

.brand-mark {
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.brand-monogram {
    position: relative;
    color: var(--gold-bright);
    font-size: 4.5rem;
    line-height: 0.88;
    letter-spacing: -0.08em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.brand-monogram::after {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.brand-name {
    color: var(--white);
    font-size: 0.84rem;
    line-height: 1.55;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.sidebar-nav {
    display: grid;
    gap: 7px;
    margin-top: 54px;
}

.sidebar-link {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 8px;
    align-items: center;
    min-height: 52px;
    padding: 8px 8px 8px 3px;
    color: rgba(255, 253, 248, 0.76);
    transition:
        color var(--transition),
        transform var(--transition);
}

.sidebar-link::after {
    content: "";
    position: absolute;
    left: 41px;
    right: 10px;
    bottom: 5px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--gold-bright);
    transform: translateX(5px);
}

.sidebar-link:hover::after,
.sidebar-link.active::after {
    transform: scaleX(1);
}

.nav-number {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--gold-muted);
}

.nav-label {
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.sidebar-bottom {
    margin-top: auto;
    padding-top: 34px;
}

.sidebar-socials {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.sidebar-socials a {
    color: var(--gold-bright);
    font-size: 0.82rem;
    font-weight: 800;
    transition:
        color var(--transition),
        transform var(--transition);
}

.sidebar-socials a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.sidebar-callout {
    max-width: 160px;
    margin-bottom: 20px;
    color: var(--cream-deep);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.sidebar-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--gold-muted);
    background: rgba(24, 18, 13, 0.54);
    color: var(--gold-bright);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.sidebar-cta:hover {
    color: var(--black);
    background: var(--gold);
    transform: translateY(-3px);
}

/* =========================================================
   MOBILE HEADER
========================================================= */

.mobile-header {
    display: none;
}

/* =========================================================
   PAGE SHELL
========================================================= */

.page-shell {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    background: var(--cream);
}

main {
    overflow: hidden;
}

.section-dark {
    color: var(--text-light);
    background:
        radial-gradient(circle at 18% 12%, rgba(201, 154, 69, 0.08), transparent 32%),
        linear-gradient(135deg, #17120e 0%, #0d0b09 58%, #17120e 100%);
}

.section-cream {
    color: var(--text-dark);
    background:
        radial-gradient(circle at 88% 18%, rgba(201, 154, 69, 0.09), transparent 25%),
        linear-gradient(135deg, #f6efe4 0%, #eadfce 100%);
}

.section-kicker {
    color: var(--gold-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

/* =========================================================
   HERO
========================================================= */

.hero-home {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: var(--white);
    background: var(--black);
}

.hero-media,
.hero-media img,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -3;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg,
            rgba(11, 8, 6, 0.88) 0%,
            rgba(14, 10, 7, 0.69) 39%,
            rgba(14, 10, 7, 0.18) 70%,
            rgba(14, 10, 7, 0.07) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.03) 62%,
            rgba(0, 0, 0, 0.46) 100%);
}

.hero-topline {
    position: absolute;
    top: 34px;
    left: clamp(34px, 5vw, 82px);
    right: clamp(34px, 5vw, 82px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: var(--cream);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.hero-topline a {
    position: relative;
    color: var(--gold-bright);
}

.hero-topline a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0.38);
    transform-origin: left;
    transition: transform var(--transition);
}

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

.hero-content {
    width: min(760px, 67%);
    margin-left: clamp(34px, 5vw, 82px);
    padding-top: 62px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: var(--gold-bright);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 45px;
    height: 1px;
    background: var(--gold);
}

.hero-home h1 {
    max-width: 760px;
    color: var(--white);
    font-size: clamp(4rem, 6.6vw, 7.7rem);
    line-height: 0.88;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-home h1 span {
    display: block;
    margin-top: 10px;
    color: var(--gold-bright);
}

.hero-description {
    max-width: 620px;
    margin-top: 30px;
    color: var(--cream-soft);
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    min-height: 52px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-muted));
    color: var(--black);
    box-shadow: 0 12px 30px rgba(201, 154, 69, 0.22);
}

.btn-gold:hover {
    background: var(--cream);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.btn-outline-light {
    border-color: rgba(255, 247, 234, 0.7);
    color: var(--white);
    background: rgba(15, 11, 8, 0.18);
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    background: rgba(13, 10, 8, 0.58);
}

.btn-brown {
    background: var(--brown);
    color: var(--white);
}

.btn-brown:hover {
    background: var(--gold-muted);
    color: var(--black);
}

/* =========================================================
   SERVICES STRIP
========================================================= */

.services-strip {
    position: relative;
    padding: 32px clamp(30px, 5vw, 76px) 42px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.services-strip > .section-kicker {
    margin-bottom: 22px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: var(--content-max);
    margin: 0 auto;
}

.service-item {
    position: relative;
    min-height: 205px;
    padding: 28px clamp(24px, 3.5vw, 52px);
    text-align: center;
}

.service-item + .service-item {
    border-left: 1px solid var(--line-dark);
}

.service-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border: 1px solid var(--gold-muted);
    color: var(--gold-bright);
    font-size: 1.5rem;
    transform: rotate(45deg);
}

.service-icon::first-letter {
    transform: rotate(-45deg);
}

.service-item h3 {
    margin-bottom: 9px;
    color: var(--white);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-item p {
    max-width: 320px;
    margin: 0 auto;
    color: var(--text-muted-light);
    font-size: 0.89rem;
    line-height: 1.65;
}

.service-item a {
    display: inline-flex;
    gap: 11px;
    margin-top: 17px;
    color: var(--gold-bright);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: gap var(--transition);
}

.service-item a:hover {
    gap: 17px;
}

/* =========================================================
   COMMITMENT
========================================================= */

.commitment-section {
    display: grid;
    grid-template-columns: minmax(330px, 0.85fr) minmax(540px, 1.35fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: center;
    padding: clamp(78px, 8vw, 130px) clamp(34px, 6vw, 96px);
}

.commitment-copy {
    max-width: 580px;
}

.commitment-copy h2 {
    margin: 16px 0 24px;
    color: var(--brown-deep);
    font-size: clamp(2.6rem, 4.2vw, 5.1rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.commitment-copy h2 span {
    display: block;
    color: var(--gold-muted);
}

.commitment-copy p:not(.section-kicker) {
    margin-bottom: 17px;
    color: var(--text-soft);
    font-size: 0.97rem;
}

.commitment-copy .btn {
    margin-top: 12px;
}

.commitment-gallery {
    position: relative;
    min-height: 550px;
}

.gallery-frame {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(132, 92, 45, 0.33);
    background: var(--cream);
    box-shadow: var(--shadow-soft);
}

.gallery-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    pointer-events: none;
}

.gallery-frame img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.gallery-frame:hover img {
    transform: scale(1.045);
}

.gallery-frame-main {
    z-index: 2;
    top: 0;
    left: 22%;
    width: 49%;
    height: 100%;
}

.gallery-frame-small {
    z-index: 1;
    top: 15%;
    left: 0;
    width: 31%;
    height: 68%;
}

.gallery-frame-right {
    right: 0;
    left: auto;
    top: 19%;
    width: 30%;
    height: 62%;
}

/* =========================================================
   FEATURED PROJECTS
========================================================= */

.featured-projects {
    padding: clamp(72px, 7vw, 110px) clamp(34px, 5vw, 82px);
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    max-width: var(--content-max);
    margin: 0 auto 34px;
}

.section-heading-row h2,
.section-heading-centered h2 {
    margin-top: 10px;
    color: var(--white);
    font-size: clamp(2.25rem, 3.7vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.text-link {
    display: inline-flex;
    gap: 14px;
    color: var(--gold-bright);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: gap var(--transition);
}

.text-link:hover {
    gap: 21px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: var(--content-max);
    margin: 0 auto;
}

.project-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid rgba(199, 153, 68, 0.52);
    background: var(--black-soft);
    box-shadow: var(--shadow-dark);
}

.project-card img {
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.9s ease,
        filter 0.9s ease;
}

.project-card:hover img {
    transform: scale(1.055);
    filter: brightness(0.82);
}

.project-overlay {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 10px 18px;
    padding: 68px 22px 22px;
    background: linear-gradient(transparent, rgba(5, 4, 3, 0.96));
}

.project-overlay p {
    grid-column: 1;
    color: var(--gold-bright);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.project-overlay h3 {
    grid-column: 1;
    color: var(--white);
    font-size: clamp(1.55rem, 2.1vw, 2.4rem);
    line-height: 1;
    letter-spacing: 0.02em;
}

.project-overlay a {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-bright);
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.project-overlay a:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(-10deg);
}

/* =========================================================
   PROCESS
========================================================= */

.process-section {
    padding: clamp(72px, 7vw, 108px) clamp(32px, 5vw, 80px);
}

.process-section .section-heading-centered {
    max-width: 920px;
    margin: 0 auto 42px;
    text-align: center;
}

.process-section .section-heading-centered h2 {
    color: var(--brown-deep);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    max-width: var(--content-max);
    margin: 0 auto;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.process-step {
    position: relative;
    min-height: 230px;
    padding: 30px 20px 28px;
    text-align: center;
}

.process-step + .process-step {
    border-left: 1px solid var(--line-light);
}

.process-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50px;
    right: -10px;
    z-index: 2;
    width: 20px;
    color: var(--gold-muted);
    background: var(--cream-soft);
    font-size: 1rem;
}

.process-number {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--gold-muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.process-step h3 {
    margin-bottom: 12px;
    color: var(--brown-deep);
    font-size: 1.05rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.process-step p {
    color: var(--text-soft);
    font-size: 0.8rem;
    line-height: 1.55;
}

/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-section {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: stretch;
    padding: 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.testimonial-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(58px, 7vw, 105px) clamp(34px, 6vw, 88px);
}

.quote-mark {
    margin: 20px 0 -10px;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5rem;
    line-height: 0.8;
}

.testimonial-section blockquote {
    max-width: 680px;
    color: var(--cream);
    font-size: clamp(1.5rem, 2.4vw, 2.65rem);
    line-height: 1.32;
}

.testimonial-name {
    margin-top: 26px;
    color: var(--gold-bright);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.testimonial-name span {
    display: block;
    margin-top: 5px;
    color: var(--text-muted-light);
    font-weight: 500;
}

.testimonial-image {
    min-height: 520px;
    overflow: hidden;
}

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

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 0.82fr;
    gap: clamp(35px, 5vw, 80px);
    align-items: center;
    padding: clamp(70px, 7vw, 110px) clamp(34px, 6vw, 92px);
}

.final-cta-heading {
    padding-right: clamp(10px, 3vw, 42px);
    border-right: 1px solid var(--line-light);
}

.final-cta-heading h2 {
    margin-top: 10px;
    color: var(--brown-deep);
    font-size: clamp(2.6rem, 4.1vw, 5.2rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.final-cta-heading h2 span {
    display: block;
    color: var(--gold-muted);
}

.final-cta-copy p {
    margin-bottom: 25px;
    color: var(--text-soft);
}

.final-contact {
    display: grid;
    gap: 18px;
    padding-left: clamp(10px, 2vw, 30px);
    border-left: 1px solid var(--line-light);
}

.final-contact a,
.final-contact p {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--brown-deep);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.final-contact span {
    color: var(--gold-muted);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 72px;
    padding: 20px clamp(34px, 5vw, 80px);
    border-top: 1px solid rgba(200, 154, 69, 0.22);
    color: var(--text-muted-light);
    background: #0b0907;
    font-size: 0.72rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a:hover {
    color: var(--gold-bright);
}

/* =========================================================
   FOCUS STATES
========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 4px;
}

/* =========================================================
   REDUCED MOTION
========================================================= */

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

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

/* =========================================================
   BUTTON AND CONTACT REFINEMENTS
========================================================= */

.btn {
    border-radius: 8px;
    font-size: 0.76rem;
    padding: 15px 27px;
}

.sidebar-cta {
    border-radius: 6px;
    font-size: 0.74rem;
    padding: 15px 17px;
}

.mobile-navigation .mobile-nav-cta {
    border-radius: 8px;
}

.final-contact {
    gap: 21px;
}

.final-contact a,
.final-contact p {
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 0.035em;
}

.final-contact span {
    font-size: 1rem;
}

/* =========================================================
   PREMIUM BUTTON FINISH
========================================================= */

.btn,
.sidebar-cta,
.mobile-navigation .mobile-nav-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    border: 1px solid rgba(255, 224, 163, 0.5);
    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #e1bd73 0%,
            #c9973f 48%,
            #9d6e28 100%
        );

    color: #17110b;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 -1px 0 rgba(80, 49, 16, 0.25),
        0 10px 24px rgba(128, 83, 26, 0.24);

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.24);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease;
}

.btn::before,
.sidebar-cta::before,
.mobile-navigation .mobile-nav-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            110deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 32%,
            rgba(255, 255, 255, 0.52) 50%,
            rgba(255, 255, 255, 0.08) 68%,
            transparent 100%
        );

    transform: skewX(-18deg);
    transition: left 0.75s ease;
}

.btn:hover,
.sidebar-cta:hover,
.mobile-navigation .mobile-nav-cta:hover {
    transform: translateY(-4px);

    border-color: rgba(255, 233, 187, 0.86);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(80, 49, 16, 0.18),
        0 16px 34px rgba(128, 83, 26, 0.34);

    color: #0d0905;
}

.btn:hover::before,
.sidebar-cta:hover::before,
.mobile-navigation .mobile-nav-cta:hover::before {
    left: 150%;
}

.btn:active,
.sidebar-cta:active,
.mobile-navigation .mobile-nav-cta:active {
    transform: translateY(-1px);
}

/* =========================================================
   FINAL SIDEBAR NAV SCALE
========================================================= */

.sidebar-nav {
    gap: 15px;
    margin-top: 62px;
}

.sidebar-link {
    min-height: 62px;
    padding: 18px 10px;
}

.nav-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-align: left;
}

.sidebar-link::after {
    left: 10px;
    right: 34px;
    bottom: 8px;
}

.sidebar-link:hover,
.sidebar-link.active {
    padding-left: 18px;
}

/* =========================================================
   STRONGER LUXURY EMBOSSED HERO TYPOGRAPHY
========================================================= */

.hero-home h1 {
    text-shadow:
        0 -1px 0 rgba(255, 255, 255, 0.42),
        0 1px 0 rgba(255, 255, 255, 0.12),
        0 3px 0 rgba(0, 0, 0, 0.58),
        0 6px 10px rgba(0, 0, 0, 0.38),
        0 18px 34px rgba(0, 0, 0, 0.28);
}

.hero-home h1 span {
    text-shadow:
        0 -1px 0 rgba(255, 244, 205, 0.68),
        0 1px 0 rgba(255, 230, 168, 0.18),
        0 3px 0 rgba(87, 50, 10, 0.82),
        0 7px 12px rgba(0, 0, 0, 0.4),
        0 18px 36px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   FINAL CONTACT READABILITY
========================================================= */

.final-contact {
    gap: 24px;
}

.final-contact a,
.final-contact p {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #2a2119;
}

.final-contact span {
    flex: 0 0 auto;
    min-width: 18px;
    color: var(--gold-muted);
    font-size: 1rem;
}

.final-contact a:hover {
    color: var(--gold-muted);
}