:root {
    --bg: #0b0d12;
    --bg-soft: #11151d;
    --surface: rgba(17, 21, 29, 0.86);
    --surface-strong: #161c27;
    --surface-light: #f3efe7;
    --card: #121722;
    --card-alt: #1a2130;
    --text: #f5f1e8;
    --muted: #b5b0a6;
    --dark-text: #171a20;
    --gold: #c8a86b;
    --gold-bright: #f4d39a;
    --line: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0d12;
    color: var(--text);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.site-shell {
    min-height: 100vh;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.35;
    pointer-events: none;
    animation: driftOrb 12s ease-in-out infinite;
}

.orb-one {
    top: 140px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(244, 211, 154, 0.32), transparent 70%);
}

.orb-two {
    right: -40px;
    top: 220px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(120, 160, 255, 0.18), transparent 72%);
    animation-delay: -4s;
}

.hero-shell {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(200, 168, 107, 0.18), transparent 32%),
        radial-gradient(circle at top right, rgba(56, 93, 143, 0.18), transparent 28%),
        linear-gradient(180deg, #0b0d12 0%, #10151e 100%);
}

.hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0%, transparent 42%),
        linear-gradient(180deg, rgba(200, 168, 107, 0.12), transparent 40%);
    pointer-events: none;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(9, 12, 18, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand-mark {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}

.brand-kicker {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 14px;
}

.nav-menu a {
    color: rgba(245, 241, 232, 0.88);
    padding: 10px 14px;
    border-radius: 999px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-bright);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px 0;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    padding: 60px 0 78px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 28px;
    align-items: center;
}

.eyebrow,
.section-tag,
.price-label,
.panel-label,
.showcase-label {
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
}

.hero-copy h1,
.section-heading h2,
.intro-grid h2,
.why-copy h2,
.faq-intro h2,
.contact-copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.08;
}

.hero-copy h1 {
    max-width: 12ch;
    margin: 12px 0 14px;
    font-size: clamp(3rem, 6vw, 5.7rem);
}

.hero-text {
    max-width: 60ch;
    color: rgba(245, 241, 232, 0.78);
    font-size: 1.08rem;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, #f4d39a 0%, #c8a86b 100%);
    color: #17130c;
    box-shadow: 0 18px 34px rgba(200, 168, 107, 0.24);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.button-block {
    width: 100%;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.metric-card,
.hero-panel-card,
.price-card,
.why-item,
.area-panel,
.faq-item,
.contact-form {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.metric-card {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
}

.metric-card strong {
    display: block;
    font-size: 1.35rem;
    color: var(--gold-bright);
}

.metric-card span {
    color: rgba(245, 241, 232, 0.7);
    font-size: 0.95rem;
}

.hero-panel {
    position: relative;
    transition: transform 0.3s ease;
}

.hero-panel-image {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    animation: floatPanel 6s ease-in-out infinite;
}

.hero-panel-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center right;
}

.hero-panel-card {
    width: min(360px, calc(100% - 32px));
    margin: -56px 0 0 auto;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: rgba(14, 18, 26, 0.92);
    position: relative;
}

.hero-panel-card ul {
    margin-top: 10px;
    list-style: none;
    display: grid;
    gap: 8px;
}

.hero-panel-card li {
    color: rgba(245, 241, 232, 0.82);
    padding-left: 18px;
    position: relative;
}

.hero-panel-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.section {
    padding: 72px 0;
}

.intro-section,
.services-section,
.showcase-section,
.why-section,
.areas-section,
.pricing-section,
.faq-section,
.contact-section,
.footer {
    position: relative;
    z-index: 1;
}

.intro-section {
    background: linear-gradient(180deg, #111723 0%, #101620 100%);
}

.services-section {
    background: linear-gradient(180deg, #0e131d 0%, #111824 100%);
}

.showcase-section {
    background: linear-gradient(180deg, #121926 0%, #10151e 100%);
}

.why-section {
    background: linear-gradient(180deg, #0f141d 0%, #131b27 100%);
}

.areas-section {
    background: linear-gradient(180deg, #10151e 0%, #121925 100%);
    color: var(--text);
}

.pricing-section {
    background: linear-gradient(180deg, #121925 0%, #0f141d 100%);
    color: var(--text);
}

.faq-section {
    background: linear-gradient(180deg, #0f141d 0%, #121824 100%);
    color: var(--text);
}

.contact-section {
    background: linear-gradient(180deg, #121824 0%, #0c1017 100%);
    color: var(--text);
}

.footer {
    background: #0a0d13;
    color: var(--text);
}

.intro-grid,
.why-grid,
.contact-grid,
.faq-layout {
    display: grid;
    gap: 24px;
}

.intro-grid {
    grid-template-columns: 1fr 1.1fr;
}

.intro-grid h2,
.section-heading h2,
.why-copy h2,
.faq-intro h2,
.contact-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    color: currentColor;
    margin-top: 14px;
}

.intro-copy p,
.section-heading p,
.why-copy p,
.faq-intro p,
.contact-copy p {
    color: rgba(245, 241, 232, 0.72);
}

.areas-section .section-heading p,
.pricing-section .section-heading p,
.faq-section .faq-intro p,
.contact-section .contact-copy p {
    color: rgba(245, 241, 232, 0.72);
}

.areas-section h2,
.pricing-section h2,
.faq-section h2,
.contact-section h2,
.areas-section h3,
.pricing-section h3,
.faq-section h3,
.contact-section h3,
.areas-section p,
.pricing-section p,
.faq-section p,
.contact-section p,
.areas-section label,
.pricing-section label,
.faq-section label,
.contact-section label {
    color: var(--text);
}

.section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
    max-width: 760px;
}

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

.service-card {
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    position: relative;
}

.service-card::after,
.price-card::after,
.why-item::after,
.area-panel::after,
.contact-form::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.service-card:hover,
.showcase-card:hover,
.why-item:hover,
.area-panel:hover,
.price-card:hover {
    transform: translateY(-6px);
}

.service-card:hover {
    border-color: rgba(244, 211, 154, 0.24);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.service-card:hover::after,
.price-card:hover::after,
.why-item:hover::after,
.area-panel:hover::after,
.contact-form:hover::after {
    transform: translateX(120%);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-card:hover .service-image img,
.showcase-card:hover img {
    transform: scale(1.06);
}

.service-body {
    padding: 18px;
}

.service-index {
    color: var(--gold);
    font-size: 0.88rem;
    letter-spacing: 0.2em;
}

.service-body h3 {
    margin: 10px 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
}

.service-body p:last-child {
    color: rgba(245, 241, 232, 0.72);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 18px;
}

.showcase-large {
    grid-row: span 2;
    min-height: 620px;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 300px;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.showcase-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 15, 0.92) 100%);
}

.showcase-overlay h3 {
    margin-top: 10px;
    max-width: 18ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
}

.why-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
}

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

.why-item {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(244, 211, 154, 0.12);
}

.why-item h3 {
    margin-bottom: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.why-item p {
    color: rgba(245, 241, 232, 0.72);
}

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

.area-panel,
.price-card,
.faq-item,
.contact-form {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.area-panel {
    padding: 20px;
}

.area-panel h3,
.price-card h3 {
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    margin-bottom: 16px;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip-list span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.contact-panel p,
.contact-panel a,
.price-card li,
.faq-answer p {
    color: rgba(245, 241, 232, 0.78);
}

.contact-panel a:hover {
    color: var(--gold-bright);
}

.price-card {
    padding: 20px;
}

.featured-price {
    background: linear-gradient(180deg, rgba(200, 168, 107, 0.18), rgba(255, 255, 255, 0.06));
}

.price-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.price-card li {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    color: var(--text);
    text-align: left;
}

.faq-trigger:hover {
    background: rgba(200, 168, 107, 0.08);
}

.faq-trigger span:first-child {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.faq-symbol {
    color: var(--gold);
    font-size: 1.6rem;
    line-height: 1;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}

.faq-answer > p {
    overflow: hidden;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
    padding: 0 20px 18px;
}

.faq-item.open .faq-symbol {
    content: "-";
}

.contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
}

.contact-form {
    padding: 20px;
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(245, 241, 232, 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(200, 168, 107, 0.42);
    border-color: rgba(200, 168, 107, 0.5);
    box-shadow: 0 0 0 6px rgba(200, 168, 107, 0.08);
}

.form-message {
    min-height: 24px;
    color: var(--text);
}

.button:disabled {
    opacity: 0.72;
    cursor: wait;
}

.reveal-section,
.reveal-card,
.reveal-up,
.reveal-scale {
    opacity: 0;
    will-change: transform, opacity;
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.8s ease;
}

.reveal-section,
.reveal-up {
    transform: translateY(34px);
}

.reveal-card {
    transform: translateY(22px);
}

.reveal-scale {
    transform: scale(0.94);
}

.reveal-section.is-visible,
.reveal-card.is-visible,
.reveal-up.is-visible,
.reveal-scale.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes driftOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -20px, 0) scale(1.05);
    }
}

@keyframes floatPanel {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ambient-orb,
    .hero-panel-image,
    .reveal-section,
    .reveal-card,
    .reveal-up,
    .reveal-scale {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.form-message.success {
    color: #0d7f47;
}

.form-message.error {
    color: #a13434;
}

.footer {
    padding: 20px 0 30px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    color: var(--gold-bright);
}

.footer p {
    color: rgba(245, 241, 232, 0.72);
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(244, 211, 154, 0.35);
    border-radius: 50%;
    background: rgba(12, 16, 23, 0.88);
    color: var(--gold-bright);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, border-color 0.25s ease;
    z-index: 40;
}

.back-to-top span {
    font-size: 20px;
    line-height: 1;
}

.back-to-top:hover {
    transform: translateY(0);
    border-color: rgba(244, 211, 154, 0.7);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero-grid,
    .intro-grid,
    .why-grid,
    .faq-layout,
    .contact-grid,
    .showcase-grid,
    .areas-layout,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .showcase-large {
        grid-row: auto;
        min-height: 360px;
    }

    .hero-panel-card {
        margin-top: 16px;
    }
}

@media (max-width: 820px) {
    .hamburger {
        display: block;
        z-index: 25;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        width: min(320px, calc(100% - 40px));
        padding: 14px;
        border-radius: 24px;
        background: rgba(13, 17, 24, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 13px 16px;
    }

    .hero {
        padding: 42px 0 58px;
    }

    .hero-metrics,
    .why-list,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel-image img {
        height: 420px;
        object-position: 68% center;
    }

    .section {
        padding: 52px 0;
    }

    .brand-name {
        font-size: 28px;
    }

    .hero-copy h1 {
        max-width: none;
    }

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

    .button {
        width: 100%;
    }

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

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

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

    .hero-copy h1 {
        font-size: 2.6rem;
    }

    .section-heading h2,
    .intro-grid h2,
    .why-copy h2,
    .faq-intro h2,
    .contact-copy h2 {
        font-size: 2rem;
    }

    .service-image {
        height: 190px;
    }

    .showcase-card,
    .showcase-large {
        min-height: 260px;
    }

    .area-panel,
    .price-card,
    .contact-form,
    .faq-trigger {
        padding-left: 18px;
        padding-right: 18px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
    }
}
