/* ==========================================================================
   ESQUERRÉ ADVISORY — Stylesheet
   Paleta exacta del brief: Navy #162135, Gold #BFA16C, White #FFFFFF, Gray #444444
   Tipografías: Cormorant Garamond, Montserrat, Open Sans
   ========================================================================== */

:root {
    --navy: #162135;
    --navy-light: #1d2d45;
    --navy-dark: #0e1724;

    --gold: #BFA16C;
    --gold-light: #d4b97f;
    --gold-dark: #a88c56;

    --white: #FFFFFF;
    --gray-text: #444444;
    --gray-light: #f5f4f0;
    --gray-soft: #faf9f7;
    --gray-border: #e5e3de;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', Arial, sans-serif;

    --shadow-sm: 0 2px 10px rgba(22, 33, 53, 0.06);
    --shadow-md: 0 8px 30px rgba(22, 33, 53, 0.1);
    --shadow-lg: 0 20px 50px rgba(22, 33, 53, 0.14);
    --shadow-gold: 0 10px 40px rgba(191, 161, 108, 0.25);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    --container: 1240px;
    --nav-h: 80px;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--navy);
}

h4 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--navy);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-left: 36px;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    margin-bottom: 24px;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.section-title-impact {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: var(--navy);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray-text);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(191, 161, 108, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(191, 161, 108, 0.45);
    background: var(--gold-light);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-ghost:hover {
    background: rgba(191, 161, 108, 0.1);
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-ghost-dark:hover {
    background: rgba(191, 161, 108, 0.1);
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-block { width: 100%; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 100;
    transition: all 0.4s var(--ease);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(22, 33, 53, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 70px;
    box-shadow: 0 1px 0 rgba(191, 161, 108, 0.15);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.12em;
}
.brand-sub {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-top: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s var(--ease);
    position: relative;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover {
    color: var(--gold);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 12px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(191, 161, 108, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--nav-h) 32px 60px;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, var(--navy-light) 0%, var(--navy) 60%, var(--navy-dark) 100%);
    z-index: -3;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(191, 161, 108, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(191, 161, 108, 0.06) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(191, 161, 108, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(191, 161, 108, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -2;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.75 0 0 0 0 0.63 0 0 0 0 0.42 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.hero-logo {
    width: 110px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(191, 161, 108, 0.3));
    animation: float 6s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 720px;
    margin: 0 auto 48px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero-tagline {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold);
    flex-wrap: wrap;
}
.hero-tagline .dot {
    color: var(--gold);
    opacity: 0.5;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 1px solid rgba(191, 161, 108, 0.5);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero-scroll span {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

/* ========== SECTIONS ========== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-head-center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 72px;
}
.section-head-center .eyebrow { padding-left: 0; }
.section-head-center .eyebrow::before { display: none; }

/* ========== TESTIMONIALS (prepared, empty) ========== */
.testimonials-section {
    background: var(--navy);
    padding: 80px 0;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .eyebrow { color: var(--gold); }

.testimonials-grid {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    border: 1px solid rgba(191, 161, 108, 0.3);
    border-radius: var(--radius-md);
    padding: 48px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
}
.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ========== FIRM SECTION (LA FIRMA) ========== */
.firm-section {
    background: var(--gray-soft);
}
.firm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold));
}

.firm-content {
    max-width: 820px;
    margin: 0 auto;
}

.firm-questions {
    margin-bottom: 48px;
    text-align: center;
}
.firm-question {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 12px;
}

.firm-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.firm-inspirational {
    font-style: italic;
    color: var(--navy) !important;
    font-weight: 600;
}

.firm-tagline {
    text-align: center;
    margin-top: 40px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}

/* ========== FOUNDER SECTION ========== */
.founder-section {
    background: linear-gradient(180deg, var(--gray-soft), var(--gray-light));
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.founder-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.founder-photo-wrap {
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(191, 161, 108, 0.3);
}
.founder-photo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
}

.founder-content p {
    font-size: 1.05rem;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.founder-quote {
    position: relative;
    margin-top: 40px;
    padding: 36px 40px;
    background: var(--navy);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.founder-quote em {
    color: var(--gold);
    font-weight: 600;
}
.founder-quote footer {
    margin-top: 16px;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}
.quote-mark {
    position: absolute;
    top: -20px;
    left: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
    font-style: italic;
    opacity: 0.6;
}

/* ========== MISSION & VISION ========== */
.mission-section {
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    transition: all 0.5s var(--ease);
}
.mv-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mv-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-text);
}

/* ========== VALUES ========== */
.values-section {
    background: var(--gray-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-border);
    border-left: 4px solid var(--gold);
    position: relative;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--navy);
    font-weight: 700;
}

.value-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ========== METHOD E.D.C.R.™ ========== */
.method-section {
    background: var(--gray-light);
}

.method-badge {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-top: 16px;
}

.method-intro {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
}
.method-intro p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.method-tabs {
    max-width: 900px;
    margin: 0 auto 48px;
}

.method-tab-nav {
    display: flex;
    gap: 4px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.method-tab-btn {
    flex: 1;
    min-width: 160px;
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    background: var(--gray-border);
    color: var(--gray-text);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.method-tab-btn:hover {
    background: var(--navy-light);
    color: var(--gold);
}
.method-tab-btn.active {
    background: var(--navy);
    color: var(--gold);
    font-weight: 700;
}

.method-tab-content {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    overflow: hidden;
}

.method-tab-panel {
    display: none;
    padding: 48px;
    animation: fadeIn 0.4s var(--ease);
}
.method-tab-panel.active {
    display: block;
}
.method-tab-panel h4 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 16px;
}
.method-tab-panel p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-text);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.method-closing {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.method-closing p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-text);
    font-style: italic;
}

/* ========== SOLUTIONS ========== */
.solutions-section {
    background: var(--gray-soft);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-border);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.solution-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
    font-style: italic;
}

.solution-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--navy);
    font-weight: 700;
}
.solution-card p {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.7;
}

/* ========== SERVICES ========== */
.services-section {
    background: linear-gradient(180deg, var(--gray-light), var(--gray-soft));
}

.service-feature {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 56px;
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    border: 1px solid rgba(191, 161, 108, 0.3);
}
.service-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 20%, rgba(191, 161, 108, 0.15), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(191, 161, 108, 0.08), transparent 50%);
}

.service-feature-tag {
    display: inline-block;
    background: rgba(191, 161, 108, 0.15);
    border: 1px solid rgba(191, 161, 108, 0.35);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

.service-feature h3 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 20px;
}
.service-feature > div > p,
.service-feature-grid > div > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 28px;
}

.service-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}
.service-feature-list svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.service-feature-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.service-feature-note {
    font-size: 0.85rem;
    color: var(--gold);
    text-align: center;
    letter-spacing: 0.1em;
}

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-border);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--navy);
    font-weight: 700;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.7;
}

.services-closing {
    text-align: center;
    margin-top: 56px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gray-text);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
}
.contact-section .section-title { color: var(--white); }
.contact-section .section-title em { color: var(--gold); }
.contact-section .eyebrow { color: var(--gold); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 520px;
}

.contact-cta-wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(191, 161, 108, 0.2);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
a.contact-method:hover {
    border-color: var(--gold);
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(191, 161, 108, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; }

.contact-method-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cm-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}
.cm-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(191, 161, 108, 0.2);
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--navy);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.contact-form label span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
}
.form-row label { margin-bottom: 0; }

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    background: var(--gray-soft);
    color: var(--navy);
    transition: all 0.3s var(--ease);
    width: 100%;
    resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(191, 161, 108, 0.15);
}

.contact-form button {
    margin-top: 8px;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-top: 14px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 32px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-brand img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
}
.footer-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.12em;
}
.footer-slogan {
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 4px;
    font-family: var(--font-display);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col h5 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.footer-col a,
.footer-col span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 12px;
}

/* ========== FLOATING WHATSAPP ========== */
.fab-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all 0.3s var(--ease);
    animation: pulse 2.5s ease-in-out infinite;
}
.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.55);
}
.fab-whatsapp svg { width: 30px; height: 30px; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .section { padding: 90px 0; }
    .founder-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .values-grid,
    .services-grid,
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .mv-grid { grid-template-columns: 1fr; }
    .service-feature-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .method-tab-btn { min-width: 120px; font-size: 13px; padding: 14px 16px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-container { padding: 0 20px; }
    .section { padding: 72px 0; }

    .nav-links {
        position: fixed;
        inset: var(--nav-h) 0 0 0;
        background: var(--navy);
        flex-direction: column;
        padding: 40px 24px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        border-top: 1px solid rgba(191, 161, 108, 0.15);
        overflow-y: auto;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .brand-name { font-size: 17px; }
    .brand-sub { font-size: 9px; }
    .nav-logo img { width: 38px; height: 38px; }

    .hero { padding: calc(var(--nav-h) + 20px) 20px 60px; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; }
    .hero-logo { width: 90px; height: 90px; }

    .firm-question { font-size: 1.15rem; }

    .values-grid,
    .services-grid,
    .solutions-grid,
    .footer-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .contact-form,
    .service-feature { padding: 32px 24px; }

    .contact-cta-wrap { flex-direction: column; }
    .contact-cta-wrap .btn { width: 100%; }

    .founder-quote { padding: 24px; font-size: 1.05rem; }

    .mv-card { padding: 36px 28px; }

    .footer-bottom { flex-direction: column; text-align: center; }

    .fab-whatsapp { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    .fab-whatsapp svg { width: 26px; height: 26px; }

    .method-tab-nav { flex-direction: column; }
    .method-tab-btn { border-radius: var(--radius-sm); }
    .method-tab-content { border-radius: var(--radius-md); }
    .method-tab-panel { padding: 32px 24px; }
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(191, 161, 108, 0.35);
    border-radius: 999px;
    padding: 7px 12px 7px 10px;
    color: var(--white);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}
.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(191, 161, 108, 0.08);
}
.lang-globe {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}
.lang-chevron {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    transition: transform 0.25s var(--ease);
    opacity: 0.7;
}
.lang-switcher.open .lang-chevron {
    transform: rotate(180deg);
}
.lang-current {
    line-height: 1;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: var(--navy);
    border: 1px solid rgba(191, 161, 108, 0.25);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
    z-index: 200;
}
.lang-switcher.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-menu li { margin: 0; }
.lang-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 5px;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-menu a::after { display: none !important; }
.lang-menu a:hover {
    background: rgba(191, 161, 108, 0.12);
    color: var(--gold);
}

@media (max-width: 768px) {
    .lang-switcher {
        align-self: flex-start;
        margin-top: 4px;
    }
    .lang-btn {
        padding: 10px 16px 10px 14px;
        font-size: 13px;
    }
    .lang-globe { width: 18px; height: 18px; }
    .lang-menu {
        right: auto;
        left: 0;
    }
}
