:root {
    --charcoal: #0a0d0c;
    --charcoal-2: #111612;
    --ink: #17120f;
    --forest: #0d2218;
    --forest-2: #183c2f;
    --olive: #6d7652;
    --stone: #f2efe7;
    --paper: #fff8e9;
    --muted: #bfb49f;
    --gold: #c69a5b;
    --gold-2: #f4d28c;
    --copper: #8f6840;
    --line: rgba(246, 210, 140, 0.22);
    --line-soft: rgba(255, 255, 255, 0.09);
    --glass: rgba(12, 15, 13, 0.66);
    --shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
    --radius-lg: 34px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --shell: min(92vw, 1360px);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--stone);
    background:
        radial-gradient(circle at 18% 4%, rgba(198, 154, 91, 0.16), transparent 28rem),
        radial-gradient(circle at 82% 22%, rgba(24, 60, 47, 0.55), transparent 38rem),
        linear-gradient(180deg, #090c0b 0%, #111612 46%, #090c0b 100%);
    font-family: Tahoma, "Segoe UI", Arial, sans-serif;
    line-height: 1.9;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 78%);
}

.luxury-noise {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.16;
    background:
        repeating-radial-gradient(circle at 10% 20%, rgba(255,255,255,.12) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 8px);
    mix-blend-mode: overlay;
}

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

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

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

::selection {
    color: #0b0f0d;
    background: var(--gold-2);
}

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: clamp(70px, 9vw, 128px);
}

.site-header {
    position: fixed;
    inset: 18px clamp(16px, 4vw, 52px) auto;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(14px, 2vw, 34px);
    padding: 12px 14px 12px 18px;
    color: rgba(255, 248, 233, 0.88);
    border: 1px solid rgba(244, 210, 140, 0.17);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(7, 10, 9, 0.62), rgba(7, 10, 9, 0.36));
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
    background: rgba(7, 10, 9, 0.9);
    border-color: rgba(244, 210, 140, 0.26);
    box-shadow: 0 22px 90px rgba(0, 0, 0, 0.52);
}

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

.brand-emblem {
    position: relative;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(244, 210, 140, 0.24);
    border-radius: 18px;
    background: radial-gradient(circle at 50% 0%, rgba(244, 210, 140, 0.14), rgba(255,255,255,0.025));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 16px 38px rgba(0,0,0,.34);
}

.brand-emblem img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 7px 18px rgba(198, 154, 91, 0.28));
}

.brand-copy {
    display: grid;
    line-height: 1.4;
}

.brand-copy strong {
    color: var(--gold-2);
    font-size: 17px;
    letter-spacing: -0.02em;
}

.brand-copy small {
    color: rgba(255, 248, 233, 0.62);
    font-size: 11px;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 2.4vw, 34px);
    font-size: 14px;
    color: rgba(255, 248, 233, 0.76);
}

.main-nav a {
    position: relative;
    padding-block: 10px;
    transition: color 180ms ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 4px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
    transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--gold-2);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding-inline: 16px;
    color: var(--gold-2);
    border: 1px solid rgba(244, 210, 140, 0.25);
    border-radius: 15px;
    background: rgba(244, 210, 140, 0.05);
    direction: ltr;
    font-size: 13px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(244, 210, 140, 0.25);
    border-radius: 15px;
    color: var(--gold-2);
    background: rgba(255,255,255,.03);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: currentColor;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -0.01em;
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(105%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
    transition: transform 520ms ease;
}

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

.btn:hover::before {
    transform: translateX(-105%);
}

.btn-primary {
    color: #18120b;
    background: linear-gradient(135deg, #f6d894, #b98b4d 58%, #8f6840);
    box-shadow: 0 16px 44px rgba(198, 154, 91, 0.26);
}

.btn-soft {
    color: #1a1209;
    background: linear-gradient(135deg, #f0d394, #b88a4c);
    box-shadow: 0 12px 34px rgba(198,154,91,.18);
}

.btn-outline {
    color: var(--paper);
    border-color: rgba(244, 210, 140, 0.32);
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(10px);
}

.btn-ghost {
    color: var(--paper);
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.05);
}

.btn.full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    isolation: isolate;
    padding: 138px 0 54px;
    overflow: hidden;
    background: var(--charcoal);
}

.hero-bg,
.detail-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: translate3d(0, calc(var(--scroll-y, 0) * 0.08px), 0) scale(1.04);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 21% 34%, rgba(198, 154, 91, 0.14), transparent 24rem),
        linear-gradient(90deg, rgba(5, 7, 6, 0.2) 0%, rgba(5, 7, 6, 0.52) 39%, rgba(5, 7, 6, 0.92) 100%),
        linear-gradient(0deg, rgba(8, 12, 10, 1) 0%, rgba(8, 12, 10, 0.18) 44%, rgba(8, 12, 10, 0.78) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 28vh;
    background: linear-gradient(0deg, #090c0b, transparent);
}

.hero-orbit {
    position: absolute;
    left: -12vw;
    bottom: 9vh;
    width: 42vw;
    aspect-ratio: 1;
    border: 1px solid rgba(244, 210, 140, 0.15);
    border-radius: 50%;
    opacity: .9;
    box-shadow: inset 0 0 80px rgba(244,210,140,.05);
}

.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    inset: 9%;
    border: 1px solid rgba(244, 210, 140, 0.09);
    border-radius: 50%;
}

.hero-orbit::after {
    inset: 22%;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: clamp(32px, 6vw, 86px);
    align-items: end;
}

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

.luxury-line {
    display: block;
    width: 72px;
    height: 2px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, transparent, var(--gold-2));
}

.eyebrow,
.section-kicker,
.line-badge {
    margin: 0 0 12px;
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.hero h1,
.detail-hero h1,
.thanks-view h1 {
    margin: 0;
    color: #fff7e8;
    font-size: clamp(54px, 8.2vw, 118px);
    line-height: 1.08;
    letter-spacing: -0.075em;
    text-shadow: 0 24px 70px rgba(0,0,0,.62);
}

.hero-lead {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 248, 233, 0.78);
    font-size: clamp(17px, 1.7vw, 24px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-note {
    align-self: end;
    padding: 24px;
    border: 1px solid rgba(244,210,140,.2);
    border-radius: 26px;
    color: rgba(255,248,233,.74);
    background: linear-gradient(180deg, rgba(10,14,12,.76), rgba(10,14,12,.36));
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-note span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gold-2);
    direction: ltr;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 11px;
}

.hero-note strong {
    display: block;
    color: #fff8ea;
    font-size: 19px;
    line-height: 1.9;
}

.hero-note p {
    margin: 14px 0 0;
    font-size: 14px;
}

.metric-dock {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 58px;
    border: 1px solid rgba(244,210,140,.22);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(16, 20, 18, 0.82), rgba(12, 15, 13, 0.55));
    box-shadow: 0 28px 84px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.05);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.metric-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: center;
    padding: clamp(22px, 3vw, 36px);
}

.metric-item:not(:last-child)::after {
    content: "";
    position: absolute;
    inset: 24px auto 24px 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(244,210,140,.22), transparent);
}

.metric-icon {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(244,210,140,.22);
    border-radius: 16px;
    color: var(--gold-2);
    background: rgba(244,210,140,.06);
}

.metric-item strong {
    color: var(--gold-2);
    font-size: clamp(28px, 3.8vw, 46px);
    line-height: 1;
    direction: ltr;
    text-align: right;
}

.metric-item small {
    color: rgba(255,248,233,.65);
}

.intro-band {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(28px, 6vw, 80px);
    align-items: center;
    padding-top: clamp(52px, 6vw, 80px);
}

.intro-card,
.service-panel,
.detail-panel,
.inquiry-form,
.thanks-card,
.newsletter-card {
    border: 1px solid rgba(244,210,140,.18);
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
    box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.05);
    backdrop-filter: blur(14px);
}

.intro-card {
    padding: clamp(30px, 4vw, 48px);
    border-radius: 28px;
}

.intro-card h2,
.section-head h2,
.signature-copy h2,
.inquiry-copy h2,
.duo-card h2,
.detail-main h2 {
    margin: 0;
    color: #fff8e9;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.35;
    letter-spacing: -0.04em;
}

.intro-copy p,
.signature-copy p,
.inquiry-copy p,
.duo-card p,
.detail-main p,
.footer-brand p,
.newsletter-card p {
    margin: 0;
    color: rgba(255,248,233,.68);
}

.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.mini-tags span,
.project-chip,
.project-location,
.line-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 12px;
    border: 1px solid rgba(244,210,140,.22);
    border-radius: 999px;
    color: var(--gold-2);
    background: rgba(10,13,12,.48);
    font-size: 12px;
    font-weight: 800;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 26px;
    margin-bottom: clamp(26px, 4vw, 48px);
}

.section-head.centered {
    justify-content: center;
    text-align: center;
}

.text-link,
.card-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-2);
    font-weight: 800;
    white-space: nowrap;
}

.text-link::before,
.card-link::before {
    content: "←";
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(244,210,140,.26);
    border-radius: 50%;
    transition: transform 180ms ease;
}

.text-link:hover::before,
.card-link:hover::before {
    transform: translateX(-4px);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.project-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    border: 1px solid rgba(244,210,140,.16);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.028));
    box-shadow: 0 28px 72px rgba(0,0,0,.38);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244,210,140,.34);
    box-shadow: 0 34px 96px rgba(0,0,0,.54);
}

.project-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 580ms ease, filter 580ms ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.08);
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(7,10,9,.84));
}

.project-chip {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
}

.project-location {
    position: absolute;
    z-index: 2;
    bottom: 14px;
    right: 14px;
    left: 14px;
    justify-content: center;
    color: rgba(255,248,233,.82);
    background: rgba(7,10,9,.55);
    backdrop-filter: blur(12px);
}

.project-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
}

.project-title-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.project-title-row h3 {
    margin: 0;
    color: #fff8e9;
    font-size: 20px;
    line-height: 1.45;
}

.price {
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.project-body p {
    margin: 0;
    color: rgba(255,248,233,.62);
    font-size: 14px;
}

.spec-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-row span {
    padding: 6px 10px;
    border-radius: 999px;
    color: rgba(255,248,233,.72);
    background: rgba(255,255,255,.055);
    font-size: 12px;
}

.progress-wrap {
    margin-top: auto;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255,248,233,.64);
    font-size: 13px;
}

.progress-meta strong {
    color: var(--gold-2);
}

.progress-track {
    position: relative;
    height: 8px;
    margin-top: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}

.progress-track span {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--progress);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--copper), var(--gold-2));
    box-shadow: 0 0 22px rgba(244,210,140,.24);
}

.service-panel {
    position: relative;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 0%, rgba(198,154,91,.14), transparent 27rem),
        linear-gradient(135deg, rgba(13, 34, 24, .86), rgba(10, 13, 12, .72));
}

.service-panel::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(244,210,140,.10), transparent 26%, rgba(255,255,255,.025));
}

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

.service-grid article {
    padding: clamp(22px, 3vw, 34px);
    min-height: 230px;
    border: 1px solid rgba(244,210,140,.14);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-grid article:hover {
    transform: translateY(-8px);
    border-color: rgba(244,210,140,.34);
    background: rgba(244,210,140,.06);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    color: var(--gold-2);
    border: 1px solid rgba(244,210,140,.22);
    border-radius: 17px;
    font-size: 28px;
    line-height: 1;
}

.service-grid h3,
.process-line h3,
.value-list b,
.footer-col h3,
.newsletter-card h3,
.milestone-grid h3 {
    margin: 0 0 8px;
    color: #fff8e9;
}

.service-grid p,
.process-line p,
.value-list small,
.milestone-grid p {
    margin: 0;
    color: rgba(255,248,233,.62);
    font-size: 14px;
}

.process-head p {
    max-width: 430px;
    margin: 0;
    color: rgba(255,248,233,.62);
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.deluxe-timeline::before {
    content: "";
    position: absolute;
    top: 48px;
    inset-inline: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244,210,140,.34), transparent);
}

.process-line article {
    position: relative;
    padding-top: 2px;
    text-align: center;
}

.process-line article span {
    position: relative;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    color: var(--gold-2);
    border: 1px solid rgba(244,210,140,.34);
    border-radius: 50%;
    background: var(--charcoal);
    box-shadow: 0 0 0 9px rgba(10,13,12,.82), 0 18px 44px rgba(0,0,0,.36);
    direction: ltr;
}

.process-line article i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    color: var(--gold-2);
    border-radius: 15px;
    background: rgba(244,210,140,.07);
    font-style: normal;
}

.signature-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
}

.signature-media {
    position: relative;
    border: 1px solid rgba(244,210,140,.18);
    border-radius: 32px;
    padding: 12px;
    background: rgba(255,255,255,.035);
    box-shadow: var(--shadow);
}

.signature-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 24px;
}

.image-caption {
    position: absolute;
    right: 28px;
    bottom: 28px;
    max-width: min(420px, 70%);
    padding: 16px 18px;
    border: 1px solid rgba(244,210,140,.2);
    border-radius: 18px;
    background: rgba(7,10,9,.68);
    backdrop-filter: blur(14px);
}

.image-caption strong {
    display: block;
    color: var(--gold-2);
    direction: ltr;
    letter-spacing: .08em;
}

.image-caption span {
    color: rgba(255,248,233,.68);
    font-size: 13px;
}

.signature-copy p {
    margin-top: 18px;
}

.value-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.value-list span {
    display: grid;
    gap: 3px;
    padding: 18px;
    border: 1px solid rgba(244,210,140,.16);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
}

.dual-projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.duo-card {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(244,210,140,.16);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
    box-shadow: 0 24px 84px rgba(0,0,0,.3);
}

.duo-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    border-radius: 22px;
}

.duo-card > div {
    padding: 14px;
}

.duo-card h2 {
    font-size: clamp(24px, 2.3vw, 36px);
}

.duo-card p {
    margin-top: 14px;
}

.duo-card .text-link {
    margin-top: 18px;
}

.map-frame {
    position: relative;
    min-height: 420px;
    border: 1px solid rgba(244,210,140,.16);
    border-radius: 30px;
    overflow: hidden;
    background: #101411;
    box-shadow: var(--shadow);
}

.map-frame iframe {
    width: 100%;
    height: 460px;
    border: 0;
    filter: saturate(.86) contrast(.92) sepia(.18) brightness(.8);
}

.map-badge {
    position: absolute;
    z-index: 2;
    top: 24px;
    right: 24px;
    display: grid;
    gap: 4px;
    min-width: 260px;
    padding: 18px 20px;
    border: 1px solid rgba(244,210,140,.22);
    border-radius: 18px;
    color: rgba(255,248,233,.72);
    background: rgba(7,10,9,.72);
    backdrop-filter: blur(14px);
}

.map-badge strong {
    color: #fff8e9;
}

.map-badge small {
    color: var(--muted);
}

.inquiry-section {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
    gap: clamp(28px, 6vw, 78px);
    align-items: start;
}

.contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.contact-strip a {
    padding: 10px 14px;
    border: 1px solid rgba(244,210,140,.18);
    border-radius: 999px;
    color: var(--gold-2);
    background: rgba(255,255,255,.035);
}

.inquiry-form {
    padding: clamp(24px, 4vw, 40px);
    border-radius: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-grid label {
    display: grid;
    gap: 8px;
    color: rgba(255,248,233,.74);
    font-size: 13px;
    font-weight: 800;
}

.form-grid label:has(textarea) {
    grid-column: 1 / -1;
}

.field-control,
input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(244,210,140,.16);
    border-radius: 16px;
    padding: 14px 16px;
    color: #fff8e9;
    outline: none;
    background: rgba(4, 7, 6, .5);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field-control:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: rgba(244,210,140,.42);
    box-shadow: 0 0 0 4px rgba(244,210,140,.08);
    background: rgba(4, 7, 6, .72);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

.errorlist {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    color: #ffd4c7;
    font-size: 12px;
}

.inquiry-form .btn {
    margin-top: 18px;
}

.site-footer {
    position: relative;
    padding: 0 0 30px;
    color: rgba(255,248,233,.72);
}

.footer-frame {
    width: var(--shell);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.4fr .65fr .65fr .95fr;
    gap: 30px;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(244,210,140,.16);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018));
    box-shadow: var(--shadow);
}

.footer-brand p {
    margin-top: 18px;
}

.footer-logo .brand-emblem {
    width: 64px;
    height: 64px;
}

.footer-logo .brand-emblem img {
    width: 46px;
    height: 46px;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.social-row a,
.footer-col a {
    color: rgba(255,248,233,.68);
    transition: color 180ms ease, transform 180ms ease;
}

.social-row a {
    padding: 8px 12px;
    border: 1px solid rgba(244,210,140,.16);
    border-radius: 999px;
}

.social-row a:hover,
.footer-col a:hover {
    color: var(--gold-2);
    transform: translateX(-3px);
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 9px;
}

.newsletter-card {
    padding: 22px;
    border-radius: 22px;
}

.newsletter-card .btn {
    margin-block: 18px 12px;
}

.newsletter-card small {
    color: var(--muted);
}

.footer-bottom {
    width: var(--shell);
    margin: 18px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255,248,233,.45);
    font-size: 12px;
}

.footer-bottom a {
    color: var(--gold-2);
}

.floating-contact {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 48;
    display: grid;
    place-items: center;
    min-height: 50px;
    padding-inline: 18px;
    border: 1px solid rgba(244,210,140,.28);
    border-radius: 999px;
    color: #18120b;
    background: linear-gradient(135deg, #f3d18d, #b98b4d);
    box-shadow: 0 16px 60px rgba(0,0,0,.38);
    font-weight: 900;
}

/* Detail page */
.detail-hero {
    position: relative;
    min-height: 78svh;
    display: grid;
    align-items: end;
    padding-block: 150px 68px;
    isolation: isolate;
    overflow: hidden;
    background: #080b0a;
}

.detail-hero-bg {
    background-image: var(--detail-image);
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(8,11,10,.18), rgba(8,11,10,.82)),
        linear-gradient(0deg, rgba(8,11,10,1), rgba(8,11,10,.1) 50%, rgba(8,11,10,.74));
}

.detail-hero-copy {
    max-width: 780px;
}

.detail-hero-copy p:not(.line-badge) {
    max-width: 680px;
    color: rgba(255,248,233,.75);
    font-size: 18px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
}

.detail-main,
.detail-panel,
.milestone-grid article,
.gallery-grid figure {
    border: 1px solid rgba(244,210,140,.16);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018));
    box-shadow: 0 24px 84px rgba(0,0,0,.28);
}

.detail-main {
    padding: clamp(28px, 4vw, 46px);
}

.detail-main p {
    margin-top: 18px;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.detail-specs span {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(244,210,140,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.036);
}

.detail-specs strong {
    color: var(--gold-2);
    font-size: 26px;
}

.detail-specs small {
    color: rgba(255,248,233,.58);
}

.detail-panel {
    align-self: start;
    display: grid;
    gap: 14px;
    padding: 26px;
    position: sticky;
    top: 120px;
}

.detail-panel > span {
    color: var(--muted);
}

.detail-panel > strong {
    color: var(--gold-2);
    font-size: 28px;
}

.detail-panel p {
    margin: 0;
    color: rgba(255,248,233,.62);
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.milestone-grid article {
    padding: 24px;
}

.milestone-grid article > span {
    color: var(--gold-2);
    font-weight: 900;
}

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

.gallery-grid figure {
    margin: 0;
    padding: 12px;
    overflow: hidden;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
}

.gallery-grid figcaption {
    padding: 12px 8px 4px;
    color: rgba(255,248,233,.66);
    font-size: 13px;
}

.thanks-view {
    min-height: 82svh;
    display: grid;
    place-items: center;
    padding-block: 170px 80px;
}

.thanks-card {
    max-width: 760px;
    padding: clamp(34px, 6vw, 66px);
    border-radius: 34px;
    text-align: center;
}

.thanks-card h1 {
    font-size: clamp(38px, 5vw, 72px);
}

.thanks-card p {
    margin: 18px auto 0;
    max-width: 560px;
    color: rgba(255,248,233,.68);
}

.thanks-card .hero-actions {
    justify-content: center;
}

.empty-state {
    padding: 26px;
    border: 1px solid rgba(244,210,140,.16);
    border-radius: 22px;
    color: rgba(255,248,233,.72);
    background: rgba(255,255,255,.04);
}

.luxury-empty {
    grid-column: 1 / -1;
}

code {
    direction: ltr;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 6px;
    color: var(--gold-2);
    background: rgba(0,0,0,.4);
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 760ms ease, transform 760ms ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: auto auto 1fr;
    }

    .nav-toggle {
        display: block;
        order: 2;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(244,210,140,.2);
        border-radius: 24px;
        background: rgba(7,10,9,.96);
        box-shadow: 0 28px 80px rgba(0,0,0,.5);
        transform-origin: top;
        transform: scaleY(.96) translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1) translateY(0);
    }

    .main-nav a {
        padding: 13px 14px;
        border-radius: 14px;
    }

    .main-nav a:hover {
        background: rgba(244,210,140,.06);
    }

    .header-actions {
        justify-self: end;
    }

    .header-cta {
        display: none;
    }

    .hero-layout,
    .intro-band,
    .signature-section,
    .inquiry-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .project-grid,
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-line {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 38px;
    }

    .deluxe-timeline::before {
        display: none;
    }

    .dual-projects,
    .footer-frame {
        grid-template-columns: 1fr 1fr;
    }

    .detail-panel {
        position: relative;
        top: auto;
    }

    .detail-specs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    :root {
        --shell: min(92vw, 560px);
    }

    body {
        line-height: 1.85;
    }

    .site-header {
        inset: 10px 10px auto;
        grid-template-columns: auto auto;
        padding: 10px;
        border-radius: 22px;
    }

    .brand-emblem {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .brand-emblem img {
        width: 34px;
        height: 34px;
    }

    .brand-copy small,
    .header-actions {
        display: none;
    }

    .nav-toggle {
        justify-self: end;
    }

    .hero {
        min-height: 92svh;
        padding-top: 124px;
    }

    .hero-layout {
        gap: 22px;
    }

    .hero h1,
    .detail-hero h1 {
        font-size: clamp(48px, 17vw, 74px);
    }

    .hero-note {
        display: none;
    }

    .metric-dock {
        grid-template-columns: 1fr 1fr;
        margin-top: 34px;
        border-radius: 22px;
    }

    .metric-item {
        padding: 18px;
    }

    .metric-item::after {
        display: none;
    }

    .metric-icon {
        width: 42px;
        height: 42px;
    }

    .section {
        padding-block: 64px;
    }

    .section-head {
        display: grid;
        align-items: start;
    }

    .project-grid,
    .service-grid,
    .process-line,
    .dual-projects,
    .footer-frame,
    .milestone-grid,
    .gallery-grid,
    .detail-specs,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .duo-card {
        grid-template-columns: 1fr;
    }

    .duo-card img {
        min-height: 220px;
    }

    .map-frame iframe {
        height: 380px;
    }

    .map-badge {
        top: 14px;
        right: 14px;
        left: 14px;
        min-width: auto;
    }

    .image-caption {
        position: static;
        max-width: none;
        margin-top: 12px;
    }

    .footer-bottom {
        display: grid;
        text-align: center;
    }

    .floating-contact {
        left: 14px;
        bottom: 14px;
    }
}

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

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* ===== Samakoosh V2 incremental upgrades: premium header, CRM, admin-safe aliases ===== */
.site-header {
    padding: 0;
}

.header-shell {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(14px, 2vw, 34px);
    padding: 12px 14px 12px 18px;
}

.brand-symbol {
    position: relative;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(244, 210, 140, 0.24);
    border-radius: 18px;
    background: radial-gradient(circle at 50% 0%, rgba(244, 210, 140, 0.14), rgba(255,255,255,0.025));
    color: var(--gold-2);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 16px 38px rgba(0,0,0,.34);
    font-size: 24px;
    font-weight: 900;
}

.phone-pill {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding-inline: 16px;
    color: var(--gold-2);
    border: 1px solid rgba(244, 210, 140, 0.25);
    border-radius: 15px;
    background: rgba(244, 210, 140, 0.05);
    direction: ltr;
    font-size: 13px;
}

.header-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    color: #0d1110;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 18px 40px rgba(198, 154, 91, .22);
    font-size: 13px;
    font-weight: 900;
}

.footer-grid > div:not(.footer-brand):not(.newsletter-card),
.footer-frame > div:not(.footer-brand):not(.newsletter-card) {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-grid h3,
.footer-frame h3 {
    margin: 0 0 10px;
    color: var(--gold-2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    color: rgba(255,248,233,.48);
    font-size: 12px;
}

.floating-actions {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 60;
    display: grid;
    gap: 10px;
}

.floating-actions .floating-contact,
.floating-actions .floating-admin {
    position: static;
}

.floating-admin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    min-height: 44px;
    color: var(--gold-2);
    border: 1px solid rgba(244,210,140,.28);
    border-radius: 999px;
    background: rgba(7, 10, 9, .78);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 54px rgba(0,0,0,.34);
    font-size: 12px;
    font-weight: 900;
}

.crm-section {
    padding-top: 0;
}

.crm-panel {
    padding: clamp(26px, 4vw, 50px);
    border: 1px solid rgba(244,210,140,.18);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(244,210,140,.1), transparent 34%),
        radial-gradient(circle at 12% 12%, rgba(24,60,47,.85), transparent 34rem),
        rgba(255,255,255,.035);
    box-shadow: var(--shadow);
}

.crm-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.crm-grid article {
    min-height: 200px;
    padding: 24px;
    border: 1px solid rgba(244,210,140,.16);
    border-radius: 24px;
    background: rgba(5, 8, 7, .42);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.crm-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    color: var(--charcoal);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font-weight: 900;
}

.crm-grid h3 {
    margin: 18px 0 8px;
    color: var(--gold-2);
    font-size: 21px;
}

.crm-grid p {
    margin: 0;
    color: rgba(255,248,233,.66);
}

.project-signature-strip {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.signature-spec-card {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(244,210,140,.18);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.022));
    box-shadow: var(--shadow);
}

.signature-spec-card.muted {
    background: linear-gradient(135deg, rgba(24,60,47,.4), rgba(255,255,255,.018));
}

.signature-spec-card span {
    color: var(--gold);
    font-weight: 900;
}

.signature-spec-card h2 {
    margin: 10px 0;
    color: var(--gold-2);
}

.thanks-summary {
    display: grid;
    gap: 10px;
    margin: 22px 0;
    padding: 18px;
    border: 1px solid rgba(244,210,140,.16);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
}

.btn-outline.full {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 1180px) {
    .header-shell {
        grid-template-columns: auto auto 1fr;
    }

    .header-shell .nav-toggle {
        order: 2;
    }

    .header-shell .header-actions {
        justify-self: end;
    }
}

@media (max-width: 760px) {
    .header-shell {
        grid-template-columns: auto auto;
        padding: 10px;
    }

    .crm-grid,
    .project-signature-strip {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
    }

    .floating-actions {
        left: 12px;
        bottom: 12px;
    }
}
.site-header.is-hidden {
    transform: translateY(calc(-100% - 34px));
}
button[disabled] {
    opacity: .72;
    cursor: wait;
}
