:root {
    --bg: #080705;
    --bg-soft: #12100c;
    --panel: rgba(18, 16, 12, 0.86);
    --gold: #d9b45f;
    --gold-soft: #f1d98d;
    --text: #f7f1e3;
    --muted: #c8bfae;
    --line: rgba(217, 180, 95, 0.24);
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
    --radius: 24px;
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    background: radial-gradient(circle at top left, rgba(217,180,95,.14), transparent 34%), var(--bg);
    color: var(--text);
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 54px);
    background: linear-gradient(to bottom, rgba(0,0,0,.82), rgba(0,0,0,.36));
    border-bottom: 1px solid rgba(217,180,95,.16);
    backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .03em; }
.brand-mark {
    width: 42px; height: 42px; display: grid; place-items: center;
    border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-soft);
}
.brand-text { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
.primary-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); font-size: .98rem; }
.primary-nav a { color: var(--muted); transition: color .2s ease; }
.primary-nav a:hover, .primary-nav a.active { color: var(--gold-soft); }
.nav-cta {
    border: 1px solid var(--gold); border-radius: 999px; padding: 9px 16px;
    color: var(--gold-soft) !important;
}
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--gold-soft); transition: .2s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 140px clamp(20px, 5vw, 72px) 80px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.60) 42%, rgba(0,0,0,.25) 100%),
        var(--hero-image, url('../images/budapest-hero.jpg')) center/cover no-repeat;
}
.hero-inner { width: min(760px, 100%); }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: clamp(.75rem, 1.2vw, .9rem); }
h1 { margin: 14px 0 18px; font-size: clamp(2.7rem, 8vw, 6.2rem); line-height: .95; letter-spacing: -.045em; }
.hero p { max-width: 660px; color: var(--muted); font-size: clamp(1.05rem, 2.2vw, 1.38rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px; padding: 13px 22px; border: 1px solid var(--gold);
    color: var(--gold-soft); background: rgba(217,180,95,.08); font-weight: 700;
}
.btn.secondary { border-color: rgba(255,255,255,.26); color: var(--text); background: rgba(255,255,255,.05); }

.section { padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px); }
.section-inner { width: min(var(--max), 100%); margin: 0 auto; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
h2 { margin: 0 0 14px; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.03; letter-spacing: -.035em; }
.lead { color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.22rem); }
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card {
    min-height: 230px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 10px; color: var(--gold-soft); font-size: clamp(1.18rem, 2.2vw, 1.55rem); line-height: 1.1; }
.card p { margin: 0; color: var(--muted); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 5vw, 70px); align-items: center; }
.panel { padding: clamp(26px, 4vw, 46px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); }
.list { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; }
.list li { padding-left: 22px; position: relative; color: var(--muted); }
.list li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.stars { color: var(--gold-soft); letter-spacing: .12em; margin-bottom: 14px; }
.quote { font-size: clamp(1rem, 1.8vw, 1.18rem); color: var(--text); }
.author { margin-top: 18px; color: var(--muted); font-style: italic; }
.contact-card { display: grid; gap: 16px; }
.contact-row { padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.04); }
.contact-row strong { display: block; color: var(--gold-soft); }
.form-grid { display: grid; gap: 14px; }
input, textarea {
    width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px;
    background: rgba(0,0,0,.28); color: var(--text); font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
button.btn { cursor: pointer; font: inherit; }
.note { color: var(--muted); font-size: .95rem; }
.site-footer { border-top: 1px solid var(--line); background: #050403; padding: 42px clamp(20px, 5vw, 72px) 24px; }
.footer-inner { width: min(var(--max), 100%); margin: 0 auto; display: flex; justify-content: space-between; gap: 30px; }
.footer-inner p { max-width: 520px; color: var(--muted); }
.footer-links { display: grid; gap: 8px; color: var(--muted); }
.footer-bottom { width: min(var(--max), 100%); margin: 28px auto 0; color: rgba(255,255,255,.48); font-size: .9rem; }

@media (max-width: 980px) {
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .review-grid, .split { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
    .nav-toggle { display: block; }
    .primary-nav {
        position: absolute; top: 78px; right: 18px; left: 18px;
        display: none; flex-direction: column; align-items: stretch; gap: 0;
        padding: 14px; border: 1px solid var(--line); border-radius: 22px;
        background: rgba(8,7,5,.96); box-shadow: var(--shadow);
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding: 14px 12px; border-bottom: 1px solid rgba(217,180,95,.12); }
    .primary-nav a:last-child { border-bottom: 0; }
    .nav-cta { text-align: center; margin-top: 8px; }
    .hero { min-height: 86vh; }
}
@media (max-width: 620px) {
    .card-grid, .review-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; }
    .brand-text { max-width: 180px; }
}


/* v01.2 hotfix: keep existing About page hero stable and use isolated subpage hero for new pages */
.hero {
    position: relative;
    min-height: clamp(560px, calc(100vh - 76px), 820px);
    display: flex;
    align-items: flex-end;
    padding: clamp(110px, 14vh, 170px) clamp(22px, 5vw, 72px) clamp(56px, 9vh, 110px);
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.58) 48%, rgba(0,0,0,.18) 100%);
    z-index: 1;
}
.hero > img,
.hero .hero-image,
.hero picture,
.hero picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-inner,
.hero-content,
.hero-text {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
}
.hero h1,
.hero-content h1,
.hero-text h1 {
    margin: 14px 0 18px;
    font-size: clamp(2.55rem, 7vw, 5.8rem);
    line-height: .96;
    letter-spacing: -.045em;
}
.hero p,
.hero-content p,
.hero-text p {
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(1.02rem, 2vw, 1.28rem);
}

.page-hero {
    min-height: clamp(560px, calc(100vh - 76px), 820px);
    display: flex;
    align-items: flex-end;
    padding: clamp(110px, 14vh, 170px) clamp(22px, 5vw, 72px) clamp(56px, 9vh, 110px);
    background:
        linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.58) 48%, rgba(0,0,0,.18) 100%),
        var(--hero-image) center/cover no-repeat;
}
.page-hero-inner { width: min(760px, 100%); }
.page-hero p { max-width: 660px; color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.28rem); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.site-header { min-height: 76px; }
@media (max-width: 820px) {
    .hero, .page-hero { min-height: 78vh; padding-top: 118px; }
}


/* v01.3 modern visual refresh: cleaner typography, no badge logo, no framed nav CTA */
:root {
    --bg: #050505;
    --bg-soft: #0d0d0d;
    --panel: rgba(18, 18, 18, 0.78);
    --gold: #d6b25e;
    --gold-soft: #f0d891;
    --text: #f5f2ea;
    --muted: #bdb7aa;
    --line: rgba(214, 178, 94, 0.18);
    --shadow: 0 28px 90px rgba(0,0,0,.46);
    --radius: 20px;
}
body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: radial-gradient(circle at 20% 0%, rgba(214,178,94,.10), transparent 30%), #050505;
    letter-spacing: -.01em;
}
.site-header {
    min-height: 72px;
    padding: 16px clamp(18px, 4vw, 54px);
    background: rgba(5,5,5,.76);
    border-bottom: 1px solid rgba(214,178,94,.13);
    backdrop-filter: blur(18px);
}
.brand { gap: 14px; font-weight: 650; letter-spacing: -.035em; }
.brand-mark { display: none !important; }
.brand-text { font-size: clamp(1.06rem, 1.7vw, 1.34rem); color: var(--text); }
.brand-line { width: 38px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); display: inline-block; }
.primary-nav { font-size: .92rem; gap: clamp(18px, 2.3vw, 30px); }
.primary-nav a {
    color: rgba(245,242,234,.72);
    padding: 8px 0;
    position: relative;
    transition: color .18s ease, opacity .18s ease;
}
.primary-nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
    opacity: .78;
}
.primary-nav a:hover, .primary-nav a.active { color: var(--gold-soft); }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); }
.nav-cta { border: 0 !important; border-radius: 0 !important; padding: 8px 0 !important; background: transparent !important; color: rgba(245,242,234,.72) !important; }
.nav-cta:hover, .nav-cta.active { color: var(--gold-soft) !important; }
.nav-toggle span { background: var(--text); height: 1.5px; }
h1, h2, h3, .brand-text { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
h1 { font-weight: 650; letter-spacing: -.075em; }
h2 { font-weight: 620; letter-spacing: -.06em; }
.card h3 { font-weight: 600; letter-spacing: -.035em; }
.eyebrow { font-size: clamp(.68rem, 1vw, .78rem); letter-spacing: .2em; font-weight: 650; }
.btn {
    border-radius: 14px;
    padding: 13px 19px;
    font-weight: 650;
    border-color: rgba(214,178,94,.55);
    background: rgba(214,178,94,.10);
    box-shadow: none;
}
.btn.secondary { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.045); }
.card, .panel, .review, .contact-row, input, textarea { border-radius: 18px; }
.card { background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.014)); }
@media (max-width: 820px) {
    .primary-nav { top: 74px; border-radius: 18px; background: rgba(8,8,8,.97); }
    .primary-nav a { padding: 14px 10px; }
    .primary-nav a::after { display: none; }
}

/* BudapestGuiding v01.4 – Executive Hero Layout */
:root {
    --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --gold-modern: #f0b735;
    --gold-modern-soft: #ffd36a;
}

body {
    font-family: var(--font-main);
}

.brand {
    font-weight: 800;
    letter-spacing: -0.035em;
}

..brand-mark,
.nav-cta {
    display: none !important;
}

.primary-nav {
    font-weight: 650;
    font-size: .93rem;
}

.primary-nav a.active,
.primary-nav a:hover {
    color: var(--gold-modern-soft);
}

.about-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #050505;
    border-bottom: 1px solid rgba(240, 183, 53, .22);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/about-budapest-night.jpg');
    background-size: cover;
    background-position: center center;
    filter: blur(1.5px) saturate(.9) brightness(.62);
    transform: scale(1.025);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.64) 37%, rgba(0,0,0,.24) 68%, rgba(0,0,0,.62) 100%),
        linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.05) 42%, rgba(0,0,0,.76) 100%);
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    width: min(100%, 1680px);
    min-height: 100svh;
    margin: 0 auto;
    padding: clamp(92px, 11vh, 132px) clamp(24px, 5vw, 104px) clamp(58px, 7vh, 86px);
    display: grid;
    grid-template-columns: minmax(320px, 640px) minmax(360px, 1fr);
    align-items: center;
    gap: clamp(44px, 7vw, 120px);
}

.about-copy {
    max-width: 620px;
}

.eyebrow {
    margin: 0 0 26px;
    color: var(--gold-modern-soft);
    font-size: clamp(.72rem, .9vw, .9rem);
    line-height: 1.3;
    font-weight: 850;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.about-copy h1 {
    margin: 0;
    font-size: clamp(4.1rem, 7.3vw, 7.6rem);
    line-height: .88;
    letter-spacing: -0.075em;
    color: #fff;
}

.gold-rule {
    display: block;
    width: 96px;
    height: 3px;
    margin: 34px 0 36px;
    background: linear-gradient(90deg, var(--gold-modern), rgba(240,183,53,0));
}

.about-copy p:not(.eyebrow) {
    margin: 0 0 22px;
    color: rgba(255,255,255,.82);
    font-size: clamp(1rem, 1.16vw, 1.2rem);
    line-height: 1.82;
    font-weight: 420;
}

.modern-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 26px;
    padding: 20px 38px;
    border: 0;
    border-radius: 3px;
    background: linear-gradient(135deg, #ffd76b, #f0a51e);
    color: #0d0b06;
    font-weight: 850;
    font-size: .93rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 22px 60px rgba(0,0,0,.45), 0 8px 28px rgba(240, 183, 53, .16);
    transition: transform .18s ease, box-shadow .18s ease;
}

.modern-button:hover {
    color: #0d0b06;
    transform: translateY(-2px);
    box-shadow: 0 28px 70px rgba(0,0,0,.52), 0 12px 34px rgba(240, 183, 53, .22);
}

.about-portrait-wrap {
    align-self: end;
    justify-self: center;
    width: min(42vw, 560px);
    min-width: 340px;
    transform: translateY(36px);
    pointer-events: none;
}

.about-portrait {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 34px 60px rgba(0,0,0,.7));
}

.scroll-indicator {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    border: 1px solid rgba(240,183,53,.72);
    border-radius: 50%;
    color: var(--gold-modern-soft);
    font-size: 1.25rem;
    background: rgba(0,0,0,.22);
}

.about-more {
    background: #070706;
}

.section-inner.narrow {
    max-width: 900px;
}

@media (max-width: 980px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        align-items: end;
        padding-top: 108px;
        gap: 18px;
    }
    .about-portrait-wrap {
        grid-row: 1;
        width: min(74vw, 430px);
        min-width: 0;
        justify-self: center;
        opacity: .78;
        transform: translateY(22px);
    }
    .about-copy {
        grid-row: 2;
        max-width: 680px;
        padding-bottom: 56px;
    }
    .about-copy h1 {
        font-size: clamp(3.5rem, 15vw, 6.2rem);
    }
    .about-copy p:not(.eyebrow) {
        font-size: 1rem;
        line-height: 1.72;
    }
    .about-hero-overlay {
        background:
            linear-gradient(180deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.32) 34%, rgba(0,0,0,.88) 100%),
            linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.42));
    }
}

@media (max-width: 680px) {
    .about-hero-inner {
        padding-inline: 20px;
    }
    .eyebrow {
        letter-spacing: .22em;
        margin-bottom: 18px;
    }
    .gold-rule {
        margin: 24px 0 26px;
    }
    .modern-button {
        width: 100%;
        padding: 18px 22px;
    }
    .scroll-indicator {
        display: none;
    }
}

/* BudapestGuiding v01.4.1 – Real Executive Hero
   Uses the real uploaded image from the site root /images/steveinbud.jpg. */
.real-executive-hero .about-hero-bg {
    background-image: url('/images/steveinbud.jpg');
    background-size: cover;
    background-position: center center;
    filter: saturate(.92) brightness(.72);
    transform: none;
}

.real-executive-hero .about-hero-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.74) 31%, rgba(0,0,0,.34) 55%, rgba(0,0,0,.16) 76%, rgba(0,0,0,.46) 100%),
        linear-gradient(180deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.06) 44%, rgba(0,0,0,.82) 100%);
}

.real-executive-hero .about-hero-inner {
    grid-template-columns: minmax(320px, 650px) 1fr;
}

.real-executive-hero .about-copy {
    max-width: 640px;
}

.real-executive-hero .about-copy h1 {
    font-size: clamp(3.8rem, 6.4vw, 6.6rem);
}

.real-executive-hero .about-copy p:not(.eyebrow) {
    max-width: 610px;
}

.real-executive-hero .about-portrait-wrap {
    display: none !important;
}

@media (max-width: 980px) {
    .real-executive-hero .about-hero-bg {
        background-position: 66% center;
        filter: saturate(.9) brightness(.62);
    }
    .real-executive-hero .about-hero-inner {
        grid-template-columns: 1fr;
        align-items: center;
    }
    .real-executive-hero .about-copy {
        max-width: 700px;
        padding-bottom: 24px;
    }
    .real-executive-hero .about-hero-overlay {
        background:
            linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.50)),
            linear-gradient(180deg, rgba(0,0,0,.56) 0%, rgba(0,0,0,.24) 36%, rgba(0,0,0,.90) 100%);
    }
}

@media (max-width: 680px) {
    .real-executive-hero .about-hero-bg {
        background-position: 72% center;
    }
    .real-executive-hero .about-copy h1 {
        font-size: clamp(3.1rem, 15vw, 5rem);
    }
}


/* BudapestGuiding v01.4.3 – restore modern brand accent line */
.brand-line {
    display: inline-block !important;
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-modern), rgba(240,183,53,0));
    opacity: .95;
    flex: 0 0 auto;
}

@media (max-width: 680px) {
    .brand-line {
        width: 30px;
    }
}

/* BudapestGuiding v01.5 – Premium Contact Experience */
.contact-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #070706;
}

.contact-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 132px 0 72px;
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(320px, 520px);
    gap: clamp(34px, 6vw, 92px);
    align-items: center;
}

.contact-connect-panel h1 {
    margin: 0;
    font-size: clamp(3.4rem, 7vw, 6.8rem);
    line-height: .88;
    letter-spacing: -.07em;
    color: #fff8e5;
}

.contact-intro {
    max-width: 520px;
    margin: 30px 0 30px;
    color: rgba(255, 248, 229, .82);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
}

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

.connect-item {
    display: block;
    padding: 16px 18px;
    color: rgba(255, 248, 229, .84);
    text-decoration: none;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
    backdrop-filter: blur(16px);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.connect-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.07);
    border-color: rgba(240,183,53,.35);
    color: #fff8e5;
}

.connect-title,
.connect-text,
.connect-note {
    display: block;
}

.connect-title {
    color: #fff8e5;
    font-weight: 850;
    letter-spacing: .02em;
}

.connect-text {
    margin-top: 4px;
    color: rgba(255, 248, 229, .68);
    line-height: 1.45;
}

.phone-number {
    color: var(--gold-modern-soft);
    font-size: 1.15rem;
    font-weight: 850;
}

.connect-note {
    margin-top: 4px;
    color: rgba(255, 248, 229, .56);
    font-size: .9rem;
}

.language-line {
    margin: 20px 0 0;
    color: rgba(255, 248, 229, .72);
    font-weight: 650;
}

.contact-form-panel {
    padding: clamp(24px, 4vw, 44px);
    background: rgba(6, 5, 4, .68);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 28px;
    box-shadow: 0 36px 90px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
}

.contact-form-panel h2 {
    margin: 0 0 12px;
    color: #fff8e5;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.contact-form-panel p {
    color: rgba(255, 248, 229, .72);
}

.premium-contact-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.premium-contact-form label {
    display: grid;
    gap: 8px;
    color: rgba(255, 248, 229, .82);
    font-weight: 750;
}

.premium-contact-form label em {
    color: rgba(255, 248, 229, .52);
    font-style: normal;
    font-weight: 500;
}

.premium-contact-form input,
.premium-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 16px;
    padding: 15px 16px;
    background: rgba(255,255,255,.06);
    color: #fff8e5;
    font: inherit;
    outline: none;
    transition: border-color .18s ease, background .18s ease;
}

.premium-contact-form textarea {
    resize: vertical;
    min-height: 190px;
}

.premium-contact-form input:focus,
.premium-contact-form textarea:focus {
    border-color: rgba(240,183,53,.56);
    background: rgba(255,255,255,.085);
}

.premium-contact-form ::placeholder {
    color: rgba(255, 248, 229, .42);
}

.website-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.contact-submit {
    width: 100%;
    margin-top: 4px;
    cursor: pointer;
}

.form-message {
    margin: 18px 0 6px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
}

.form-message.success {
    color: #fff8e5;
    background: rgba(240,183,53,.16);
    border: 1px solid rgba(240,183,53,.28);
}

.form-message.error {
    color: #fff8e5;
    background: rgba(160,54,54,.22);
    border: 1px solid rgba(255,120,120,.30);
}

@media (max-width: 980px) {
    .contact-hero-inner {
        grid-template-columns: 1fr;
        padding-top: 110px;
    }
    .contact-connect-panel h1 {
        font-size: clamp(3rem, 13vw, 5.5rem);
    }
}

@media (max-width: 680px) {
    .contact-hero-inner {
        width: min(100% - 36px, 1180px);
        padding-bottom: 44px;
    }
    .contact-form-panel {
        border-radius: 22px;
    }
    .connect-item {
        border-radius: 16px;
    }
}

/* v01.5.1 Contact Hardening: two public phone numbers */
.phone-group {
    display: block;
}
.phone-link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    color: inherit;
    text-decoration: none;
    margin-top: .7rem;
    padding-top: .7rem;
    border-top: 1px solid rgba(255, 190, 60, .14);
}
.phone-link:hover .phone-number {
    color: var(--gold, #f5b83b);
}
.phone-label {
    color: rgba(255,255,255,.62);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.phone-number {
    font-weight: 800;
    letter-spacing: .02em;
}

/* v01.7 Tours CMS frontend */
.tour-grid.cms-tour-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.tour-card {
    background: rgba(16, 16, 14, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.tour-card-image {
    min-height: 210px;
    background-size: cover;
    background-position: center;
    opacity: .92;
}
.tour-card-body { padding: clamp(22px, 3vw, 34px); }
.tour-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
}
.tour-card h3 { margin: 0 0 10px; font-size: clamp(1.45rem, 2.4vw, 2.2rem); }
.tour-subtitle { color: rgba(255,255,255,.82); font-weight: 700; }
.tour-highlights { margin: 18px 0 0; padding-left: 20px; color: rgba(255,255,255,.78); }
.tour-highlights li { margin: 8px 0; }
.tour-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    border-top: 1px solid rgba(212,175,55,.16);
    margin-top: 22px;
    padding-top: 18px;
}
.tour-price { color: var(--gold); font-weight: 800; }
.text-link { color: #fff; text-decoration: none; font-weight: 800; }
.text-link:hover { color: var(--gold); }
@media (max-width: 860px) {
    .tour-grid.cms-tour-grid { grid-template-columns: 1fr; }
    .tour-card-footer { align-items: flex-start; flex-direction: column; }
}

/* v01.7.3 Frontend Auto Build */
.tour-card-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.tour-card h3 a {
    color: inherit;
    text-decoration: none;
}
.tour-card h3 a:hover { color: var(--gold); }
.tour-detail-hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.62), rgba(0,0,0,.28)), var(--hero-image);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(212,175,55,.18);
}
.tour-detail-hero-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(120px, 14vh, 180px) 0 clamp(70px, 10vh, 120px);
}
.tour-detail-hero h1 {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(3.2rem, 8vw, 7.2rem);
    line-height: .92;
    letter-spacing: -.07em;
}
.tour-detail-hero p {
    max-width: 620px;
    color: rgba(255,255,255,.82);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.7;
}
.tour-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 0;
}
.tour-detail-meta span {
    border: 1px solid rgba(212,175,55,.28);
    border-radius: 999px;
    padding: 10px 15px;
    color: var(--gold);
    font-weight: 800;
    background: rgba(0,0,0,.28);
}
.tour-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, .8fr);
    gap: 24px;
    align-items: start;
}
.tour-detail-main h2 {
    margin-top: 32px;
}
.tour-detail-side {
    position: sticky;
    top: 110px;
}
.tour-facts {
    margin: 0 0 24px;
}
.tour-facts div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(212,175,55,.14);
}
.tour-facts dt {
    color: rgba(255,255,255,.58);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 800;
}
.tour-facts dd {
    margin: 0;
    color: #fff;
    font-weight: 800;
    text-align: right;
}
.gold-list li::marker { color: var(--gold); }
.not-found-section { padding-top: 140px; min-height: 70vh; }
@media (max-width: 900px) {
    .tour-detail-layout { grid-template-columns: 1fr; }
    .tour-detail-side { position: static; }
    .tour-detail-hero { min-height: 72vh; }
}

/* v01.7.4 Public Login Entry */
.account-entry {
    min-height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.10), transparent 28%),
        linear-gradient(135deg, rgba(0,0,0,0.96), rgba(13,12,9,0.98));
}
.account-entry-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.account-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(3.25rem, 8vw, 7rem);
    line-height: 0.88;
    letter-spacing: -0.07em;
}
.account-copy .lead {
    max-width: 620px;
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.86);
}
.muted-text {
    max-width: 580px;
    color: rgba(255,255,255,0.62);
    line-height: 1.7;
}
.account-panel {
    display: grid;
    gap: 1rem;
}
.account-card {
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    box-shadow: 0 28px 80px rgba(0,0,0,0.30);
    padding: clamp(1.4rem, 3vw, 2.4rem);
}
.account-card-primary {
    min-height: 260px;
}
.account-label {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 800;
}
.account-card h2,
.account-card h3 {
    margin: 0 0 0.75rem;
    color: #fff;
    letter-spacing: -0.04em;
}
.account-card h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
}
.account-card h3 {
    font-size: 1.25rem;
}
.account-card p {
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.25rem;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    background: linear-gradient(135deg, #f4c542, #d4af37);
    color: #050505;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 40px rgba(212,175,55,0.20);
}
.btn-gold:hover {
    transform: translateY(-1px);
}
.account-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.muted-card {
    opacity: 0.82;
}
@media (max-width: 900px) {
    .account-entry-grid,
    .account-mini-grid {
        grid-template-columns: 1fr;
    }
    .account-entry {
        align-items: flex-start;
    }
}


/* v01.7.5 Back Navigation UX */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .02em;
    border: 1px solid rgba(212,175,55,.18);
    border-radius: 999px;
    padding: .7rem 1rem;
    background: rgba(255,255,255,.035);
}
.back-link:hover {
    background: rgba(212,175,55,.10);
}
.public-back-link {
    margin-bottom: 1.35rem;
}

/* v01.8 Booking & Enquiry Engine */
.booking-entry {
    min-height: calc(100vh - 96px);
    padding: clamp(110px, 14vh, 150px) 0 clamp(54px, 8vh, 90px);
}
.booking-entry-grid {
    align-items: start;
}
.booking-selected-tour {
    margin-top: 28px;
    display: grid;
    gap: 6px;
    max-width: 520px;
    border: 1px solid rgba(212,175,55,.22);
    border-radius: 20px;
    padding: 18px 20px;
    background: rgba(255,255,255,.035);
}
.booking-selected-tour span,
.booking-selected-tour em {
    color: rgba(255,255,255,.58);
    font-size: .82rem;
    font-style: normal;
}
.booking-selected-tour strong {
    color: #fff;
    font-size: 1.2rem;
}
.booking-mini-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.tour-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.text-link.gold { color: var(--gold); }
@media (max-width: 720px) {
    .booking-mini-fields { grid-template-columns: 1fr; }
}
