/* ══════════════════════════════════════════════════════════════
   REAL HOUSE — Premium Dark Theme
   ══════════════════════════════════════════════════════════════ */

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

:root {
    --black: #080604;
    --black-2: #0E0C0A;
    --black-3: #141210;
    --black-4: #1A1815;
    --gold: #C9AD8C;
    --gold-light: #D4BE9F;
    --gold-bright: #E2D0B4;
    --gold-dim: #8C7A62;
    --cream: #F0E8DC;
    --white: #FAF7F2;
    --text: #D8D0C4;
    --text-muted: rgba(216, 208, 196, 0.6);
    --text-faint: rgba(216, 208, 196, 0.3);
    --text-border: rgba(216, 208, 196, 0.1);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

/* Grain/noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dim) var(--black);
}

body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--text);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(201, 173, 140, 0.3);
    color: var(--white);
}

img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-bright); }

/* ══════════ LOADER ══════════ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}
.loader-logo {
    height: 80px;
    opacity: 0;
}
.loader-bar {
    width: 160px;
    height: 1px;
    background: var(--text-border);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}
.loader-bar::after {
    content: '';
    position: absolute;
    left: -50%;
    top: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: loaderSlide 1.4s ease-in-out infinite;
}
@keyframes loaderSlide {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* ══════════ HEADER ══════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s var(--ease);
}
.header.scrolled {
    padding: 16px 48px;
    background: rgba(8, 6, 4, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--text-border);
}
.header.menu-open {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    transition: none;
}
.header-logo img {
    height: 64px;
    transition: height 0.6s var(--ease);
}
.header.scrolled .header-logo img {
    height: 44px;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-nav a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}
.header-nav a:hover {
    color: var(--gold);
}
.header-nav a:hover::after {
    width: 100%;
}
.header-lang {
    display: flex;
    gap: 12px;
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid var(--text-border);
}
.header-lang button {
    background: none;
    border: none;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    cursor: pointer;
    transition: color 0.3s ease;
    text-transform: uppercase;
}
.header-lang button:hover,
.header-lang button.active {
    color: var(--gold);
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(201,173,140,.25);
    cursor: pointer;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: relative;
    z-index: 1001;
    transition: all .4s var(--ease);
}
.menu-toggle:hover, .menu-toggle.open {
    border-color: var(--gold);
    background: rgba(201,173,140,.06);
}
.menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--gold);
    position: absolute;
    left: 14px;
    right: 14px;
    transition: all 0.4s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 18px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-toggle span:nth-child(3) { top: 32px; }
.menu-toggle.open span:nth-child(1) { top: 25px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 25px; transform: rotate(-45deg); }

/* ══════════ HERO ══════════ */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 !important;
    margin: 0;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.05);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 6, 4, 0.9) 0%,
        rgba(8, 6, 4, 0.75) 35%,
        rgba(8, 6, 4, 0.8) 65%,
        rgba(8, 6, 4, 0.98) 100%
    );
}
/* Cinematic vignette */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(8, 6, 4, 0.6) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}
.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 173, 140, 0.3);
    padding: 10px 24px;
    margin-bottom: 40px;
    opacity: 0;
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(42px, 7vw, 96px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}
.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
    opacity: 0;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    opacity: 0;
}
.hero-cta:hover {
    background: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(201, 173, 140, 0.25), 0 0 0 1px rgba(201, 173, 140, 0.15);
    color: var(--black);
    letter-spacing: 0.18em;
}
.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
}
.hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-faint);
}
.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════ SECTIONS COMMON ══════════ */
section {
    padding: 160px 0;
    position: relative;
}
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 28px;
}
.section-text {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 640px;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
}
.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 32px 0;
}

/* Gold section separator */
.section-separator {
    display: block;
    width: 100%;
    height: 1px;
    border: none;
    background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
    opacity: 0.4;
    margin: 0;
}

/* ══════════ ABOUT ══════════ */
.about {
    background: var(--black-2);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.8s var(--ease);
}
.about-image:hover img {
    transform: scale(1.03);
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 173, 140, 0.15);
    pointer-events: none;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--text-border);
}
.stat-number {
    font-family: var(--serif);
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 12px;
    color: var(--text-faint);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ══════════ SERVICES ══════════ */
.services {
    background: var(--black);
}
.services-header {
    text-align: center;
    margin-bottom: 80px;
}
.services-header .section-text {
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.service-card {
    background: var(--black-2);
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease);
    border: 1px solid transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s var(--ease);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    background: var(--black-3);
    border-color: rgba(201, 173, 140, 0.08);
    box-shadow: 0 8px 40px rgba(201, 173, 140, 0.06), inset 0 1px 0 rgba(201, 173, 140, 0.05);
}
/* Large translucent service number */
.service-card .service-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--serif);
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    color: var(--gold);
    opacity: 0.06;
    pointer-events: none;
    transition: opacity 0.6s var(--ease);
}
.service-card:hover .service-num {
    opacity: 0.12;
}
.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    stroke-width: 1.2;
    fill: none;
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}
.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ══════════ PROCESS ══════════ */
.process {
    background: var(--black-2);
}
.process-header {
    text-align: center;
    margin-bottom: 80px;
}
.process-header .section-text {
    margin: 0 auto;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-border), var(--text-border), transparent);
}
.process-step {
    text-align: center;
}
.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--serif);
    font-size: 20px;
    color: var(--gold);
    background: var(--black-2);
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease);
}
.process-step:hover .step-number {
    background: rgba(201, 173, 140, 0.1);
    border-color: var(--gold);
}
.process-step h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}
.process-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════ WHY US ══════════ */
.why {
    background: var(--black);
    overflow: hidden;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-list {
    list-style: none;
}
.why-list li {
    padding: 28px 0;
    border-bottom: 1px solid var(--text-border);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.why-list li:first-child {
    padding-top: 0;
}
.why-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
}
.why-list h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
}
.why-list p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.why-image {
    position: relative;
}
.why-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.85);
}
.why-image::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(201, 173, 140, 0.1);
    z-index: 1;
    pointer-events: none;
}

/* ══════════ CONTACT ══════════ */
.contact {
    background: var(--black-2);
}
.contact-top {
    text-align: center;
    margin-bottom: 80px;
}
.contact-top .section-text { margin: 0 auto; }

/* Contact cards row */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 80px;
}
.contact-card {
    background: var(--black-3);
    padding: 40px 28px;
    text-align: center;
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform .5s var(--ease);
}
.contact-card:hover { background: var(--black-4); }
.contact-card:hover::before { transform: scaleX(1); }
.contact-card-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(201,173,140,.15);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: all .4s var(--ease);
}
.contact-card:hover .contact-card-icon {
    border-color: var(--gold-dim);
    background: rgba(201,173,140,.06);
}
.contact-card-icon svg {
    width: 20px; height: 20px;
    stroke: var(--gold); fill: none;
    stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.contact-card h4 {
    font-size: 11px; font-weight: 500;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--text-faint); margin-bottom: 10px;
}
.contact-card p, .contact-card a {
    font-size: 16px; color: var(--cream);
    line-height: 1.5; font-weight: 300;
}
.contact-card small {
    font-size: 12px; color: var(--text-faint);
    display: block; margin-top: 6px;
}

/* Form + Map grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--text-border);
}

/* Form panel */
.form-panel {
    background: var(--black-3);
    padding: clamp(40px, 5vw, 64px);
}
.form-panel h3 {
    font-family: var(--serif);
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 400; color: var(--cream);
    margin-bottom: 8px;
}
.form-lead {
    font-size: 15px; color: var(--text-muted);
    margin-bottom: 36px; line-height: 1.6;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2px;
}

/* Floating label fields */
.form-field {
    position: relative;
    background: var(--black-2);
    border-bottom: 1px solid var(--text-border);
    transition: background .3s ease;
}
.form-field:hover { background: rgba(14,12,10,.8); }
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 20px 10px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--cream);
    outline: none;
    transition: all .3s ease;
}
.form-field label {
    position: absolute;
    top: 50%; left: 20px;
    transform: translateY(-50%);
    font-size: 14px; font-weight: 300;
    color: var(--text-faint);
    pointer-events: none;
    transition: all .3s var(--ease);
}
.form-field textarea ~ label {
    top: 24px; transform: none;
}
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:not([data-empty]) ~ label {
    top: 10px; transform: none;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-dim);
}
.form-field::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .4s var(--ease);
}
.form-field:focus-within::after {
    transform: scaleX(1);
}
.form-field textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 32px;
}
.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='%238C7A62' fill='none' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 44px;
}
.form-field select option {
    background: var(--black-3);
    color: var(--cream);
}
.form-honey {
    position: absolute;
    left: -9999px; opacity: 0;
    height: 0; width: 0;
}
.form-status {
    padding: 12px 20px;
    font-size: 14px;
    min-height: 20px;
}
.form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0 0;
}
.form-submit {
    font-family: var(--sans);
    font-size: 12px; font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 18px 44px;
    cursor: pointer;
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden;
}
.form-submit::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    opacity: 0;
    transition: opacity .4s;
}
.form-submit:hover::before { opacity: 1; }
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(201,173,140,.25);
}
.form-submit[disabled] {
    cursor: wait;
    opacity: .68;
    transform: none;
    box-shadow: none;
}
.form-submit span { position: relative; z-index: 1; }
.form-note {
    font-size: 11px; color: var(--text-faint);
    max-width: 200px; line-height: 1.5;
}

/* Map panel */
.map-panel {
    background: var(--black-3);
    display: flex; flex-direction: column;
}
.map-panel iframe {
    flex: 1; width: 100%; min-height: 360px;
    border: none;
    filter: grayscale(1) brightness(.35) contrast(1.2) sepia(.08);
    transition: filter .6s ease;
}
.map-panel:hover iframe {
    filter: grayscale(.4) brightness(.5) contrast(1.1);
}
.map-info {
    padding: 28px 32px;
    border-top: 1px solid var(--text-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.map-info-text h4 {
    font-family: var(--serif);
    font-size: 18px; color: var(--cream);
    margin-bottom: 4px; font-weight: 400;
}
.map-info-text p {
    font-size: 13px; color: var(--text-faint);
}
.map-link {
    font-size: 11px; letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-dim);
    border: 1px solid rgba(201,173,140,.2);
    padding: 10px 20px;
    transition: all .4s var(--ease);
    white-space: nowrap;
}
.map-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201,173,140,.06);
}

/* About decorative quote */
.about-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--gold-dim);
    margin-top: 40px;
    padding-left: 24px;
    border-left: 2px solid rgba(201, 173, 140, 0.25);
    line-height: 1.6;
}

/* Animated gold gradient border utility */
@keyframes goldBorderShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.gold-border-top {
    position: relative;
}
.gold-border-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
    background-size: 200% 100%;
    animation: goldBorderShimmer 8s linear infinite;
}

/* ══════════ FOOTER ══════════ */
.footer {
    background: var(--black-2);
    padding: 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
}
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.footer-col h4 {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.footer-brand-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 28px;
}
.footer-logo img {
    height: 36px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.footer-logo:hover img {
    opacity: 1;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 14px;
}
.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}
.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-dim);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact-item p,
.footer-contact-item a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}
.footer-contact-item a:hover {
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid var(--text-border);
    padding: 24px 48px;
}
.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copyright {
    font-size: 13px;
    color: var(--text-faint);
}
.footer-legal-links {
    display: flex;
    gap: 24px;
}
.footer-legal-links a {
    font-size: 12px;
    color: var(--text-faint);
    transition: color 0.3s ease;
}
.footer-legal-links a:hover {
    color: var(--gold);
}

/* ══════════ NEZHOST CREDIT ══════════ */
.credit-bar {
    background: var(--black);
    border-top: 1px solid var(--text-border);
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.credit-bar a {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-faint);
    letter-spacing: .04em;
    transition: color .3s;
}
.credit-bar a:hover { color: var(--text-muted); }
.credit-bar a strong {
    font-weight: 500;
    color: var(--gold-dim);
    transition: color .3s;
}
.credit-bar a:hover strong { color: var(--gold); }
@media (max-width: 768px) {
    .credit-bar { padding: 18px 20px; }
    .credit-bar a { font-size: 12px; }
}

/* ══════════ COOKIE BANNER ══════════ */
.cookie-banner {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 9999;
    max-width: 420px;
    background: rgba(20, 18, 16, .95);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid var(--text-border);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 18px, 0) scale(.985);
    will-change: opacity, transform;
    transition:
        opacity .36s ease,
        transform .36s var(--ease),
        visibility 0s linear .36s;
}
.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 0s;
}
.cookie-banner.closing {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 14px, 0) scale(.985);
    transition:
        opacity .26s ease,
        transform .26s var(--ease),
        visibility 0s linear .26s;
}
.cookie-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cookie-header svg {
    width: 20px; height: 20px;
    stroke: var(--gold); fill: none;
    stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
}
.cookie-header h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--cream);
}
.cookie-banner p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}
.cookie-banner a {
    color: var(--gold-dim);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .3s;
}
.cookie-banner a:hover { color: var(--gold); }
.cookie-btns {
    display: flex;
    gap: 10px;
}
.cookie-btns button {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 14px 24px;
    cursor: pointer;
    transition: all .4s var(--ease);
    white-space: nowrap;
    border: none;
}
.cookie-accept {
    background: var(--gold);
    color: var(--black);
    flex: 1;
}
.cookie-accept:hover {
    background: var(--gold-bright);
    box-shadow: 0 8px 32px rgba(201,173,140,.2);
}
.cookie-reject {
    background: transparent;
    color: var(--text-faint);
    border: 1px solid var(--text-border) !important;
}
.cookie-reject:hover {
    border-color: var(--text-muted) !important;
    color: var(--text);
}

/* ══════════ MOBILE ══════════ */

/* --- Tablet --- */
@media (max-width: 1024px) {
    section { padding: 100px 32px; }
    .header { padding: 20px 24px; }
    .header.scrolled { padding: 14px 24px; }
    .header-nav { gap: 20px; }
    .header-nav a { font-size: 11px; letter-spacing: .06em; }
    .about-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-steps::before { display: none; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; background: none; gap: 2px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 32px 48px; }
}

/* --- Mobile --- */
@media (max-width: 768px) {
    section { padding: 72px 0; }
    .section-container { padding: 0 20px; }
    .contact-top, .services-header, .process-header { padding: 0 20px; }

    /* Header full width */
    .header { padding: 14px 16px; }
    .header.scrolled { padding: 10px 16px; }
    .header-logo img { height: 52px; }

    /* Fullscreen mobile menu */
    .header-nav {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9998;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 0;
        overflow-y: auto;
        min-height: 100vh;
        min-height: 100dvh;
        overscroll-behavior: contain;
    }
    .header-nav.open { display: flex; }
    .header-nav a {
        font-family: var(--serif);
        font-size: clamp(22px, 5vw, 28px);
        font-weight: 400;
        letter-spacing: .03em;
        text-transform: none;
        color: var(--text-muted);
        display: block;
        padding: 20px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--text-border);
        opacity: 0;
        transform: translateY(12px);
        animation: none;
    }
    .header-nav a:first-child { border-top: 1px solid var(--text-border); }
    .header-nav.open a { animation: mobileNavIn .4s var(--ease) forwards; }
    .header-nav.open a:nth-child(1) { animation-delay: .05s; }
    .header-nav.open a:nth-child(2) { animation-delay: .08s; }
    .header-nav.open a:nth-child(3) { animation-delay: .11s; }
    .header-nav.open a:nth-child(4) { animation-delay: .14s; }
    .header-nav.open a:nth-child(5) { animation-delay: .17s; }
    .header-nav a::after { display: none; }
    .header-nav a:hover, .header-nav a:active { color: var(--gold); }
    .header-lang {
        border-left: none;
        margin: 0; padding: 24px 0 0;
        border-top: none;
        gap: 20px;
        opacity: 0;
        animation: none;
    }
    .header-nav.open .header-lang { animation: mobileNavIn .4s var(--ease) .22s forwards; }
    .header-lang button { font-size: 14px; padding: 10px 16px; }
    .menu-toggle { display: block; z-index: 9999; }

    /* Hero */
    .hero-title { font-size: clamp(32px, 9vw, 52px); }
    .hero-content { padding: 0 20px; }
    .hero-badge { font-size: 10px; padding: 8px 18px; margin-bottom: 28px; }
    .hero-sub { font-size: 15px; margin-bottom: 36px; }

    /* Sections */
    .section-title { font-size: clamp(28px, 7vw, 42px); }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 40px 24px; }
    .process-steps { grid-template-columns: 1fr; gap: 28px; }
    .about-grid { padding: 0; }
    .about-image img { height: 300px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .stat-number { font-size: 28px; }
    .why-grid { padding: 0; }
    .why-image img { height: 320px; }
    .about-quote { font-size: 18px; padding: 20px 0 20px 20px; }

    /* Contact */
    .contact { padding: 72px 0; }
    .contact-cards { grid-template-columns: 1fr 1fr; gap: 2px; margin-left: 0; margin-right: 0; }
    .contact-grid { grid-template-columns: 1fr; background: none; gap: 2px; }
    .form-row { grid-template-columns: 1fr; }
    .form-panel { padding: 36px 20px; }
    .map-panel iframe { min-height: 260px; }
    .form-bottom { flex-direction: column; align-items: stretch; }
    .form-submit { width: 100%; text-align: center; }
    .form-note { max-width: none; text-align: center; }
    .map-info { flex-direction: column; text-align: center; gap: 12px; padding: 20px; }

    /* Footer */
    .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 20px 36px; }
    .footer-bottom { padding: 20px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
    .footer-legal-links { justify-content: center; flex-wrap: wrap; }
    .section-separator { margin: 0; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 24px 20px; gap: 16px; }
    .cookie-btns button { flex: 1; padding: 13px 16px; font-size: 10px; }
    .credit-bar { padding: 18px 20px; }
    .credit-bar a { font-size: 12px; }
}

@keyframes mobileNavIn {
    to { opacity: 1; transform: translateY(0); }
}

/* --- Small phones --- */
@media (max-width: 480px) {
    section { padding: 56px 0; }
    .section-container { padding: 0 16px; }
    .contact-top, .services-header, .process-header { padding: 0 16px; }
    .hero-title { font-size: clamp(26px, 9vw, 40px); }
    .hero-cta { padding: 16px 32px; font-size: 12px; width: 100%; justify-content: center; text-align: center; }
    .hero-scroll { bottom: 20px; }
    .hero-badge { margin-bottom: 20px; }
    .service-card { padding: 32px 20px; }
    .service-card .service-num { font-size: 48px; top: 12px; right: 12px; }
    .about-stats { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .about-image img { height: 220px; }
    .why-image img { height: 240px; }
    .step-number { width: 52px; height: 52px; font-size: 16px; }
    .contact { padding: 56px 0; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-card { padding: 24px 20px; }
    .form-panel { padding: 28px 16px; }
    .map-panel iframe { min-height: 200px; }
    .footer-main { padding: 36px 16px 28px; }
    .header-logo img { height: 46px; }
}
.divider--center { margin: 24px auto; }
