:root {
    --ink: #091028;
    --ink-soft: #141c3a;
    --paper: #f8f9fa;
    --paper-deep: #edf0f5;
    --white: #ffffff;
    --gold: #c89f50;
    --gold-light: #e3c485;
    --muted: #5e657a;
    --line: rgba(9, 16, 40, 0.1);
    --serif: "Newsreader", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
    --shadow: 0 24px 60px rgba(9, 16, 40, 0.08);
    --shadow-hover: 0 32px 70px rgba(9, 16, 40, 0.15);
    --radius: 8px;
    --container: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.05; }
h1 { font-size: clamp(3.2rem, 6vw, 6.5rem); letter-spacing: -.03em; }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.8rem); letter-spacing: -.02em; }
h3 { font-size: 1.8rem; letter-spacing: -.01em; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.narrow { max-width: 980px; }
.section { padding: 120px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 1000;
    padding: .8rem 1rem;
    background: var(--white);
    color: var(--ink);
}
.skip-link:focus { top: 1rem; }

.draft-bar {
    min-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 24px;
    background: var(--gold);
    color: var(--white);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

/* Header & Navigation with Glassmorphism */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.3s ease;
}

.header-inner { min-height: 94px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 15px; flex: 0 0 auto; transition: transform 0.3s ease; }
.brand:hover { transform: translateY(-1px); }
.brand-logo { display: block; width: 50px; height: 50px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.brand-copy small { color: var(--gold); font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }

/* Main Navigation & Dropdown */
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.4vw, 38px); margin-left: auto; }
.main-nav > a, .main-nav > div > a { position: relative; padding: 35px 0; color: var(--ink-soft); font-size: .9rem; font-weight: 500; }
.main-nav > a::after, .main-nav > div > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 25px; height: 2px; background: var(--gold); transition: right .3s ease; }
.main-nav > a:hover::after, .main-nav > a.active::after, .main-nav > div > a:hover::after { right: 0; }
.main-nav a.active { color: var(--ink); }

/* Dropdown Menu */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.has-dropdown > a svg { width: 10px; height: 10px; fill: currentColor; transition: transform 0.3s ease; }
.has-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 280px;
    padding: 15px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
    padding: 12px 25px;
    font-size: 0.85rem;
    color: var(--muted);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
    color: var(--gold);
    background: var(--paper);
    border-left-color: var(--gold);
    padding-left: 30px;
}
.dropdown-menu a::after { display: none !important; }

.header-actions { display: flex; align-items: center; gap: 24px; }
.language-switcher { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .75rem; font-weight: 600; letter-spacing: .08em; background: transparent; border: none; cursor: pointer; transition: color 0.3s ease; padding: 5px; border-radius: 4px; }
.language-switcher:hover { color: var(--gold); background: rgba(200, 159, 80, 0.05); }
.menu-toggle { display: none; border: 0; background: transparent; }

/* Language Modal */
.lang-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.lang-modal:not([aria-hidden="true"]) { opacity: 1; visibility: visible; }
.lang-modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(9, 16, 40, 0.85); backdrop-filter: blur(5px); }
.lang-modal-content { position: relative; background: var(--white); width: 90%; max-width: 400px; padding: 40px; border-radius: var(--radius); text-align: center; box-shadow: 0 40px 80px rgba(0,0,0,0.2); transform: translateY(20px) scale(0.95); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.lang-modal:not([aria-hidden="true"]) .lang-modal-content { transform: translateY(0) scale(1); }
.lang-modal-close { position: absolute; top: 15px; right: 15px; background: transparent; border: none; font-size: 1.8rem; cursor: pointer; color: var(--muted); line-height: 1; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: color 0.3s ease; }
.lang-modal-close:hover { color: var(--ink); }
.lang-modal h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--ink); margin-bottom: 30px; }
.lang-options { display: flex; flex-direction: column; gap: 15px; }
.lang-option { display: flex; align-items: center; gap: 15px; padding: 15px 25px; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius); text-decoration: none; color: var(--ink); font-weight: 500; font-size: 1.1rem; transition: all 0.3s ease; }
.lang-option:hover { border-color: var(--gold); box-shadow: 0 10px 20px rgba(200, 159, 80, 0.1); transform: translateY(-2px); }
.lang-option.active { border-color: var(--gold); background: rgba(200, 159, 80, 0.05); }
.lang-option .flag { font-size: 1.5rem; }

/* Buttons */
.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--white);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(200, 159, 80, 0.2);
}
.button:hover { background: var(--ink); border-color: var(--ink); color: var(--white); transform: translateY(-3px); box-shadow: 0 15px 25px rgba(9, 16, 40, 0.2); }
.button-small { min-height: 44px; padding: 10px 20px; font-size: .7rem; }
.button-outline { background: transparent; color: var(--ink); box-shadow: none; border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
.button-light:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 32px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--gold); color: var(--ink); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: gap 0.3s ease, color 0.3s ease; }
.text-link:hover { gap: 16px; color: var(--gold); }

.eyebrow { margin-bottom: 24px; color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.hero-lead { max-width: 700px; color: var(--muted); font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.8; }

/* Hero */
.hero { position: relative; overflow: hidden; min-height: 800px; background: linear-gradient(135deg, var(--paper) 0%, var(--paper-deep) 100%); }
.hero-grid { min-height: 800px; display: grid; grid-template-columns: 1.15fr .72fr; align-items: center; gap: clamp(60px, 8vw, 140px); padding-block: 80px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 820px; margin-bottom: 35px; color: var(--ink); }
.hero-copy .hero-lead { max-width: 660px; margin-bottom: 45px; }
.hero-signature { position: absolute; right: -5vw; bottom: -8vw; color: rgba(200, 159, 80, 0.04); font-family: var(--serif); font-size: clamp(10rem, 28vw, 28rem); font-style: italic; line-height: .7; pointer-events: none; }

.portrait-card { position: relative; z-index: 2; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; transition: transform 0.5s ease, box-shadow 0.5s ease; }
.portrait-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.portrait-art { position: relative; overflow: hidden; aspect-ratio: .82; display: grid; place-items: center; background: linear-gradient(145deg, var(--ink) 0%, #1a254c 100%); }
.portrait-art::before { content: ""; position: absolute; inset: 7%; border: 1px solid rgba(200, 159, 80, 0.3); border-radius: calc(var(--radius) / 2); }
.portrait-art span { z-index: 2; color: var(--gold); font-family: var(--serif); font-size: clamp(8rem, 15vw, 13rem); font-style: italic; font-weight: 400; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.portrait-caption { padding: 35px; background: var(--white); }
.portrait-caption p { margin-bottom: 10px; color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.portrait-caption h2 { margin-bottom: 15px; font-size: 2.2rem; }
.portrait-caption span { display: block; color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* Sections */
.intro-section { background: var(--white); position: relative; }
.split-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: center; margin-bottom: 85px; }
.split-heading h2 { max-width: 650px; margin-bottom: 0; }
.section-lead { margin-bottom: 0; color: var(--muted); font-size: 1.15rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.value-card { padding: 45px; background: var(--paper); border-radius: var(--radius); transition: transform 0.4s ease, background 0.4s ease; border: 1px solid transparent; position: relative; overflow: hidden; }
.value-card:hover { transform: translateY(-5px); background: var(--white); border-color: rgba(200, 159, 80, 0.3); box-shadow: 0 20px 50px rgba(9, 16, 40, 0.08); }
.value-card .icon-wrapper { width: 50px; height: 50px; background: rgba(200, 159, 80, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: var(--gold); }
.value-card h3 { margin: 0 0 15px; font-size: 1.5rem; color: var(--ink); font-weight: 500; }
.value-card p { color: var(--muted); font-size: .95rem; margin: 0; }

.services-preview { background: var(--paper-deep); }
.section-header { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.section-header h2 { margin-bottom: 0; }
.section-header > p { color: var(--muted); font-size: 1.1rem; }
.service-links { border-top: 1px solid rgba(9, 16, 40, 0.08); }
.service-link { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; min-height: 120px; border-bottom: 1px solid rgba(9, 16, 40, 0.08); transition: padding 0.4s ease, background 0.4s ease; }
.service-link:hover { padding-inline: 30px; background: var(--white); border-left: 4px solid var(--gold); }
.service-link strong { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--ink); transition: color 0.3s ease; }
.service-link:hover strong { color: var(--gold); }
.service-link i { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); font-size: 1.2rem; font-style: normal; transition: all 0.3s ease; }
.service-link:hover i { background: var(--gold); color: var(--white); transform: scale(1.1); }
.align-right { display: flex; justify-content: flex-end; margin-top: 60px; }
.align-center { display: flex; justify-content: center; margin-top: 60px; }

/* CTA Section */
.cta-section { padding-top: 0; background: var(--paper-deep); }
.cta-card { position: relative; overflow: hidden; padding: clamp(65px, 8vw, 110px); background: linear-gradient(135deg, var(--ink) 0%, #0a1128 100%); color: var(--white); text-align: center; border-radius: var(--radius); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15); border: 1px solid rgba(200, 159, 80, 0.2); }
.cta-card::before, .cta-card::after { content: ""; position: absolute; width: 600px; aspect-ratio: 1; border: 1px solid rgba(200, 159, 80, 0.15); border-radius: 50%; pointer-events: none; }
.cta-card::before { left: -300px; top: -300px; background: radial-gradient(circle, rgba(200,159,80,0.05) 0%, transparent 70%); }
.cta-card::after { right: -300px; bottom: -300px; background: radial-gradient(circle, rgba(200,159,80,0.05) 0%, transparent 70%); }
.cta-card h2 { max-width: 850px; margin: 0 auto 30px; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
.cta-card > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 40px; color: #cbd0e1; font-size: 1.2rem; }
.button-premium { display: inline-flex; align-items: center; justify-content: center; height: 56px; padding: 0 40px; background: linear-gradient(135deg, var(--gold) 0%, #b3883b 100%); color: var(--white); font-weight: 500; font-size: .85rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 4px; border: none; text-decoration: none; transition: all 0.4s ease; box-shadow: 0 10px 20px rgba(200, 159, 80, 0.25); }
.button-premium:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(200, 159, 80, 0.4); background: linear-gradient(135deg, #dfbc7a 0%, var(--gold) 100%); color: var(--white); }

/* Subpages Hero */
.page-hero { padding: 140px 0 120px; background: var(--paper-deep); position: relative; overflow: hidden; }
.page-hero h1 { max-width: 1000px; margin-bottom: 35px; font-size: clamp(3.2rem, 6vw, 6.5rem); position: relative; z-index: 2; }
.page-hero-dark { background: var(--ink); color: var(--white); }
.page-hero-dark .hero-lead { color: #a4a9bc; position: relative; z-index: 2; }
.page-hero-dark::after { content: ""; position: absolute; right: 0; top: 0; width: 50%; height: 100%; background: radial-gradient(circle at 70% 50%, rgba(200, 159, 80, 0.08) 0%, transparent 60%); pointer-events: none; }

.hero-box { padding: 60px 40px; }

/* Landing Hero */
.landing-hero { padding: 220px 0 180px 0; min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.landing-hero-box { max-width: 900px; position: relative; z-index: 2; padding: 70px 50px; border: 1px solid rgba(197, 168, 128, 0.5); background: rgba(10, 17, 40, 0.3); backdrop-filter: blur(4px); }

/* About Story */
.about-story { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .83fr 1fr; gap: clamp(60px, 10vw, 120px); align-items: center; }
.about-visual { min-height: 620px; display: flex; flex-direction: column; justify-content: flex-end; padding: 60px; background: var(--ink); color: var(--white); border-radius: var(--radius); position: relative; overflow: hidden; }
.about-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9, 16, 40, 0.8), transparent); }
.about-monogram { position: relative; z-index: 2; margin: auto; color: var(--gold); font-family: var(--serif); font-size: clamp(7rem, 15vw, 13rem); letter-spacing: -.12em; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.about-visual blockquote { position: relative; z-index: 2; margin: 0; padding-top: 40px; border-top: 1px solid rgba(200, 159, 80, 0.4); font-family: var(--serif); font-size: 1.55rem; font-style: italic; line-height: 1.4; }
.prose h2 { margin-bottom: 40px; }
.prose > p:not(.eyebrow) { margin-bottom: 25px; color: var(--muted); font-size: 1.05rem; }
.notice { margin-top: 40px; padding: 22px 25px; border-left: 3px solid var(--gold); background: var(--paper); color: var(--muted); font-size: .9rem; border-radius: 0 var(--radius) var(--radius) 0; }
.notice-wide { max-width: 920px; margin: 0 0 70px; }

/* Principles */
.principles-section { padding-block: 120px; background: var(--ink); color: var(--white); position: relative; }
.principles-section h2 { margin-bottom: 80px; text-align: center; color: var(--white); font-size: clamp(2.5rem, 4vw, 3.5rem); letter-spacing: -0.02em; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.principles-grid article { position: relative; padding: 60px 50px; background: var(--white); transition: all 0.5s ease; box-shadow: 0 15px 35px rgba(0,0,0,0.15); border-top: 4px solid transparent; }
.principles-grid article:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.3); border-top-color: var(--gold); }
.principles-grid h3 { margin: 0 0 25px; color: var(--ink); font-size: 1.8rem; font-weight: 500; }
.principles-grid h3::after { content: ""; display: block; width: 40px; height: 2px; background: var(--gold); margin-top: 25px; transition: width 0.4s ease; }
.principles-grid article:hover h3::after { width: 70px; }
.principles-grid p { margin: 0; color: var(--muted); line-height: 1.8; font-size: 1.05rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 120%); width: min(calc(100% - 40px), 800px); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 30px 40px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(200, 159, 80, 0.1); z-index: 9999; display: flex; align-items: center; justify-content: space-between; gap: 30px; opacity: 0; visibility: hidden; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cookie-banner.is-visible { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.cookie-content h3 { margin: 0 0 10px; font-size: 1.2rem; color: var(--ink); }
.cookie-content p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }
.cookie-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }
.cookie-actions { display: flex; gap: 15px; flex-shrink: 0; }
@media (max-width: 768px) { .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; padding: 25px; } .cookie-actions { flex-direction: column; } }

/* Footer Credits */
.credits { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); margin-top: 5px; }
.credits a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.3s ease; }
.credits a:hover { color: var(--gold); }

/* Profile Grid */
.profile-section { background: var(--white); }
.profile-grid { display: grid; grid-template-columns: .75fr 1fr; gap: 100px; }
.profile-grid h2 { margin-bottom: 0; }
.profile-grid dl { margin: 0; border-top: 1px solid rgba(9, 16, 40, 0.1); }
.profile-grid dl div { display: grid; grid-template-columns: 180px 1fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid rgba(9, 16, 40, 0.1); }
.profile-grid dt { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.profile-grid dd { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }

/* Services Catalog */
.service-catalog { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.service-card { padding: 50px; background: var(--paper); border-radius: var(--radius); transition: all 0.4s ease; display: flex; flex-direction: column; border: 1px solid transparent; }
.service-card:hover { background: var(--white); box-shadow: var(--shadow-hover); border-color: rgba(200, 159, 80, 0.2); transform: translateY(-5px); }
.service-card h2 { margin: 0 0 25px; font-size: 2.2rem; color: var(--ink); }
.service-card p { color: var(--muted); font-size: 1rem; margin-bottom: 40px; flex-grow: 1; }
.service-card a { width: fit-content; display: inline-flex; align-items: center; gap: 12px; color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: gap 0.3s ease; }
.service-card a::after { content: "→"; font-size: 1.2rem; }
.service-card a:hover { gap: 18px; }

/* Process */
.process-section { background: var(--paper-deep); }
.process-section h2 { margin-bottom: 75px; text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.process-grid article { padding: 45px; background: var(--white); border-radius: var(--radius); position: relative; overflow: hidden; border: 1px solid rgba(9, 16, 40, 0.05); }
.process-grid article::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); }
.process-grid h3 { margin: 0 0 20px; font-size: 1.5rem; }
.process-grid p { color: var(--muted); margin: 0; }

/* Contact Section */
.contact-hero { background: var(--paper); }
.contact-section { padding-block: 80px; background: var(--white); color: var(--ink); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; box-shadow: var(--shadow-hover); border-radius: var(--radius); overflow: hidden; }
.contact-details { position: relative; overflow: hidden; padding: clamp(50px, 7vw, 85px); background: var(--ink-soft); }
.contact-details h2 { margin-bottom: 60px; font-size: 3.6rem; color: var(--white); }
.contact-details dl { margin: 0; }
.contact-details dl div { padding: 25px 0; border-top: 1px solid rgba(255,255,255,.1); }
.contact-details dt { color: var(--gold); font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.contact-details dd { margin: 8px 0 0; color: #cbd0e1; font-size: 1rem; }
.contact-details a { transition: color 0.3s ease; }
.contact-details a:hover { color: var(--gold); }
.confidentiality-mark { position: absolute; right: -50px; bottom: -100px; color: rgba(200, 159, 80, 0.05); font-family: var(--serif); font-size: 20rem; line-height: 1; pointer-events: none; }

.form-card { padding: clamp(50px, 7vw, 85px); background: var(--white); color: var(--ink); }
.form-card > h2 { margin-bottom: 45px; font-size: 3.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-card label { display: block; margin-bottom: 25px; color: var(--ink-soft); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.form-card input:not([type="checkbox"]), .form-card select, .form-card textarea { width: 100%; margin-top: 10px; padding: 16px 0; border: 0; border-bottom: 1px solid rgba(9, 16, 40, 0.2); outline: none; background: transparent; color: var(--ink); border-radius: 0; text-transform: none; transition: border-color .3s ease; font-size: 1rem; }
.form-card textarea { resize: vertical; min-height: 120px; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--gold); }
.checkbox-label { display: flex !important; align-items: flex-start; gap: 15px; color: var(--muted) !important; font-weight: 400 !important; letter-spacing: 0 !important; line-height: 1.6; text-transform: none !important; }
.checkbox-label input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold); flex: 0 0 auto; cursor: pointer; }
.form-disclaimer { margin: 30px 0 0; color: var(--muted); font-size: .8rem; }
.form-message { margin-bottom: 30px; padding: 18px 20px; border-left: 3px solid var(--gold); background: var(--paper); color: var(--ink-soft); font-size: .9rem; border-radius: 0 var(--radius) var(--radius) 0; font-weight: 500; }
.form-message.error { border-color: #d9534f; }

/* Maps Container */
.map-container { margin-top: 100px; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; background: var(--white); box-shadow: 0 30px 60px rgba(9, 16, 40, 0.08); border: 1px solid rgba(200, 159, 80, 0.2); transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; }
.map-container:hover { transform: translateY(-5px); box-shadow: 0 40px 80px rgba(9, 16, 40, 0.15); border-color: rgba(200, 159, 80, 0.4); }
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Footer */
.site-footer { padding-top: 95px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr 1fr; gap: 70px; padding-bottom: 80px; }
.brand-light .brand-copy small { color: var(--gold); }
.brand-light .brand-mark { border-color: var(--gold); color: var(--gold); }
.brand-light:hover .brand-mark { background: var(--gold); color: var(--white); }
.footer-brand > p { max-width: 320px; margin: 35px 0 0; color: #8e94a8; font-size: .95rem; line-height: 1.6; }
.site-footer h2 { margin-bottom: 30px; color: var(--white); font-family: var(--sans); font-size: .85rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; position: relative; padding-bottom: 15px; }
.site-footer h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--gold); }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 16px; color: #cbd0e1; font-size: .95rem; }
.site-footer a:not(.brand) { transition: all 0.3s ease; display: inline-block; }
.site-footer a:not(.brand):hover { color: var(--gold); transform: translateX(5px); }
.muted-links span { color: #5e657a; }
.footer-contact p { margin-bottom: 12px; color: #cbd0e1; font-size: .95rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 25px; padding-block: 30px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { margin: 0; color: #5e657a; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-delay { transition-delay: .2s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Responsive Styles */
/* Desktop Hiding */
.mobile-only-link { display: none !important; }

@media (max-width: 820px) {
    .mobile-only-link { display: block !important; }
    
    h1 { font-size: clamp(3.2rem, 12vw, 4.5rem); }
    .container { width: min(calc(100% - 40px), var(--container)); }
    .section { padding: 90px 0; }
    
    /* Header Order & Layout */
    .header-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; }
    .brand { position: relative; z-index: 1000; order: 1; }
    
    .header-actions { position: relative; z-index: 1000; order: 2; margin-left: auto; margin-right: 20px; }
    .header-actions .button { display: none; }
    
    /* Perfect X Toggle */
    /* Perfect X Toggle */
    .menu-toggle { position: relative; width: 44px; height: 44px; display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 1000; order: 3; background: transparent; border: none; padding: 0; }
    .menu-toggle span:not(.sr-only) { position: absolute; width: 28px; height: 2px; background: var(--ink); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease; }
    .menu-toggle span:nth-last-child(2) { transform: translateY(-4px); }
    .menu-toggle span:last-child { transform: translateY(4px); }
    
    .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
    
    /* Full Screen Solid Menu */
    
    .main-nav { 
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100vh; /* Fallback */
        height: 100dvh; 
        z-index: 90; 
        display: flex; 
        flex-direction: column; 
        justify-content: flex-start; 
        align-items: center; 
        gap: 15px; 
        padding: 120px 30px 40px; 
        background: var(--paper-deep); /* Solid to prevent text bleed */
        opacity: 0; 
        visibility: hidden; 
        transform: translateY(-20px); 
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
        overflow-y: auto; 
        text-align: center;
    }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    
    .main-nav > a, .main-nav > div { padding: 10px 0; border: none; width: 100%; }
    .main-nav > a, .main-nav > div > a { font-family: var(--serif); font-size: 2.6rem; color: var(--ink); font-weight: 400; letter-spacing: -0.02em; text-decoration: none; }
    .main-nav > a::after, .main-nav > div > a::after { display: none; }
    
    /* Mobile Dropdown */
    .has-dropdown { display: flex; flex-direction: column; align-items: center; }
    .has-dropdown > a { justify-content: center; }
    .has-dropdown > a svg { transition: transform 0.3s ease; }
    .has-dropdown.is-open > a svg { transform: rotate(180deg); }
    .dropdown-menu { position: static; transform: none !important; opacity: 1; visibility: visible; box-shadow: none; padding: 15px 0 0 0; min-width: 100%; border-radius: 0; display: none; text-align: center; background: transparent; left: auto; }
    .has-dropdown.is-open .dropdown-menu { display: flex; flex-direction: column; }
    .has-dropdown:hover .dropdown-menu { transform: none !important; }
    .dropdown-menu a { font-family: var(--sans); font-size: 1.15rem; padding: 12px 0; border-left: none; color: var(--muted); }
    .dropdown-menu a:hover { background: transparent; padding-left: 0; color: var(--gold); }
    
    /* Global Mobile Typography adjustments */
    .section h1, .section h2, .section h3, 
    .prose h1, .prose h2, .prose h3 {
        text-align: center !important;
    }
    
    .section p:not(.hero-lead, .eyebrow), 
    .prose p:not(.hero-lead, .eyebrow) {
        text-align: justify !important;
    }
    
    /* Center gold divider lines */
    div[style*="width: 50px; height: 2px"], 
    div[style*="width: 60px; height: 2px"] {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Center text links if they are the only thing after centered elements */
    .prose .text-link {
        display: flex;
        justify-content: center;
        width: max-content;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero, .hero-grid { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; padding-block: 80px 40px; text-align: center; justify-items: center; gap: 50px; }
    .hero-copy h1, .hero-copy .hero-lead { margin-left: auto; margin-right: auto; }
    .button-row { justify-content: center; }
    .portrait-card { width: min(100%, 480px); }
    .portrait-art { aspect-ratio: 1; }
    .split-heading, .section-header { grid-template-columns: 1fr; gap: 30px; }
    .values-grid, .services-grid, .service-grid { grid-template-columns: 1fr; gap: 30px; }
    .value-card, .service-card { padding: 40px; }
    
    .page-hero { padding: 120px 0 80px; text-align: center; }
    .page-hero h1 { margin-left: auto; margin-right: auto; }
    .landing-hero { padding: 140px 0 80px 0; min-height: auto; }
    .landing-hero-box { padding: 50px 25px; }
    .hero-box { padding: 40px 25px; }
    
    .about-grid, .profile-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { min-height: 400px; padding: 40px; }
    .principles-grid, .process-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .contact-section { background: var(--white); padding-top: 40px; }
    .contact-details { min-height: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .site-footer h2::after { left: 50%; transform: translateX(-50%); }
    .footer-brand > p { margin-left: auto; margin-right: auto; }
    .brand { justify-content: center; }
}

@media (max-width: 560px) {
    .container { width: min(calc(100% - 30px), var(--container)); }
    .brand-logo { width: 38px; height: 38px; }
    .brand-copy strong { font-size: 1.2rem; }
    .brand-copy small { font-size: .65rem; }
    
    .hero-grid { padding-block: 50px 30px; }
    .hero-copy h1 { margin-bottom: 20px; }
    .button-row { flex-direction: column; align-items: stretch; gap: 15px; }
    .button-row .button, .button-row .button-premium { width: 100%; text-align: center; justify-content: center; }
    .portrait-caption { padding: 25px; }
    .value-card, .service-card { padding: 30px 25px; }
    
    .landing-hero { padding: 100px 0 60px 0; }
    .landing-hero-box { padding: 40px 20px; }
    .hero-box { padding: 35px 20px; }

    
    .service-link { grid-template-columns: 1fr auto; min-height: 100px; gap: 20px; padding-inline: 15px; }
    .service-link strong { font-size: 1.6rem; }
    .service-card { padding: 35px; }
    .profile-grid dl div { grid-template-columns: 1fr; gap: 10px; padding: 20px 0; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-details, .form-card { padding: 40px 25px; }
    .contact-details h2, .form-card > h2 { font-size: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
}

.premium-intro { max-width: 800px; margin: 0 auto; position: relative; padding-left: 30px; border-left: 3px solid var(--gold); }
.premium-intro .lead-text { font-size: 1.4rem; color: var(--ink); font-family: var(--serif); line-height: 1.6; margin-bottom: 20px; }

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}
