/* ===== VARIABLES & RESET ===== */
:root {
    --primary-dark: #060c16;
    --primary-mid: #0b1526;
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-dim: rgba(201,168,76,0.15);
    --gold-glow: rgba(201,168,76,0.4);
    --gray: #8a8a9a;
    --bg-light: #f7f5f0;
    --bg-cream: #ece8df;
    --white: #ffffff;
    --text: #1a1a2e;
    --shadow-luxury: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 10px 40px rgba(201,168,76,0.15);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

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

ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== GOLD SHIMMER ANIMATION ===== */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.15); }
    50% { box-shadow: 0 0 40px rgba(201,168,76,0.3); }
}

@keyframes line-grow {
    from { width: 0; }
    to { width: 70px; }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gold gradient text */
.gold-text {
    background: linear-gradient(135deg, var(--gold), #f0dfa0, var(--gold), #a8892e);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}

.header.scrolled {
    background: rgba(6,12,22,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 40px rgba(0,0,0,0.3), 0 1px 0 rgba(201,168,76,0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    height: 46px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(201,168,76,0.2));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

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

.nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width var(--transition), left var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background layers */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: saturate(0.3) brightness(0.35);
    animation: hero-zoom 25s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 30%, rgba(201,168,76,0.04) 0%, transparent 60%),
        linear-gradient(180deg, rgba(6,12,22,0.6) 0%, rgba(6,12,22,0.75) 40%, rgba(6,12,22,0.95) 100%);
}

/* Subtle animated grid */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(201,168,76,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.5) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

/* Floating orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(201,168,76,0.12);
    top: -10%;
    right: -5%;
    animation: orb-float 20s ease-in-out infinite alternate;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(201,168,76,0.08);
    bottom: -5%;
    left: -5%;
    animation: orb-float 16s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(201,168,76,0.1);
    top: 40%;
    left: 50%;
    animation: orb-float 12s ease-in-out infinite alternate;
}

@keyframes orb-float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, -30px); }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-badge span:last-child {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201,168,76,0.8);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(201,168,76,0.6);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(201,168,76,0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(201,168,76,0.3); }
}

/* Title lines */
.hero h1 {
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.05;
}

.hero-line {
    display: block;
}

.hero-line-1 {
    font-size: 6rem;
    letter-spacing: 12px;
    opacity: 0;
    animation: hero-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-line-2 {
    font-size: 3.2rem;
    letter-spacing: 2px;
    font-weight: 400;
    opacity: 0;
    animation: hero-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero h1 .accent {
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), #f0dfa0, var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
}

@keyframes hero-reveal {
    0% { opacity: 0; transform: translateY(30px); filter: blur(6px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Description */
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 44px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    letter-spacing: 0.3px;
    opacity: 0;
    animation: hero-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

/* Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    animation: hero-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.btn-ghost {
    display: inline-block;
    padding: 16px 36px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    background: transparent;
    transition: all var(--transition);
}

.btn-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.04);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(201,168,76,0.35);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 5;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
    0% { top: -50%; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

/* Side text */
.hero-side-text {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(201,168,76,0.2);
    white-space: nowrap;
    z-index: 5;
    pointer-events: none;
}

/* ===== PAGE HERO (Interior pages) ===== */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--primary-dark);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.03) 0%, transparent 50%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.page-hero-bg .deco-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.06), transparent);
}

.page-hero-bg .deco-line:nth-child(1) { left: 15%; }
.page-hero-bg .deco-line:nth-child(2) { left: 85%; }

.page-hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -0.5px;
}

.page-hero p {
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    letter-spacing: 0.5px;
}

.page-hero .gold-line {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 28px auto 0;
    position: relative;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 44px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #dfbf5e);
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(201,168,76,0.2);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201,168,76,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
    box-shadow: 0 12px 35px rgba(201,168,76,0.25);
}

.btn-dark {
    background: var(--primary-dark);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.2);
}

.btn-dark:hover {
    background: var(--primary-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

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

.section-light {
    background: var(--bg-light);
}

.section-dark {
    background: var(--primary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .overline {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

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

.section-header .gold-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 24px auto 0;
}

/* Decorative section borders */
.section-decorated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1000px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}

/* ===== SERVICE CARDS ===== */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.cards-grid .card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
}

.card {
    background: var(--white);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(201,168,76,0.06), transparent 70%);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(201,168,76,0.1);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover::after {
    width: 150px;
    height: 150px;
}

.card-icon {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 14px;
    position: relative;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
    transition: all var(--transition);
}

.card:hover .card-icon {
    transform: scale(1.08) translateY(-3px);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 8px 24px rgba(201,168,76,0.12);
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.03));
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

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

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-item {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.why-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15), transparent);
}

.why-item:last-child::after {
    display: none;
}

.why-item .icon {
    width: 76px;
    height: 76px;
    background: var(--primary-dark);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold);
    position: relative;
    transition: all var(--transition);
}

.why-item .icon svg {
    width: 28px;
    height: 28px;
}

.why-item .icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 20px;
}

.why-item:hover .icon {
    transform: scale(1.08) translateY(-3px);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 12px 36px rgba(201,168,76,0.2);
}

.why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.why-item p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
    background: var(--primary-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}

.cta-content {
    position: relative;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.cta-section p {
    color: rgba(255,255,255,0.45);
    margin-bottom: 40px;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.cta-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-ornament span {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.cta-ornament span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.cta-ornament .diamond {
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

/* ===== ABOUT / NOSOTROS ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro .text .overline {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.about-intro .text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-intro .text p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual .decorative-box {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/3;
    background: var(--primary-dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,168,76,0.15);
}

.about-visual .decorative-box::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201,168,76,0.08);
}

.about-visual .decorative-box::after {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(201,168,76,0.15);
    z-index: -1;
}

.about-visual .decorative-box .inner-text {
    color: var(--white);
    text-align: center;
    padding: 36px;
}

.about-visual .decorative-box .inner-text h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.about-visual .decorative-box .inner-text p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* About image wrapper */
.about-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(201,168,76,0.2);
    z-index: -1;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
    z-index: -1;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.05);
    transition: filter 0.6s ease;
}

.about-img-wrapper:hover img {
    filter: brightness(1) contrast(1.1);
}

/* Philosophy pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pillar {
    text-align: center;
    padding: 56px 36px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pillar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201,168,76,0.02), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.pillar:hover::before {
    transform: scaleX(1);
}

.pillar:hover::after {
    opacity: 1;
}

.pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.pillar .number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.pillar h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.pillar p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.8;
}

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

.value-card {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.value-card:hover::after {
    width: 60px;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.4);
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ===== SECTORES (ELEGANT) ===== */
.sectors-elegant {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.se-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    box-shadow: 0 4px 40px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow 0.5s ease;
}

.se-item:hover {
    box-shadow: 0 12px 60px rgba(0,0,0,0.08);
}

.se-item--reverse {
    direction: rtl;
}

.se-item--reverse > * {
    direction: ltr;
}

.se-img {
    position: relative;
    overflow: hidden;
}

.se-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(0.75) contrast(1.05);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
}

.se-item:hover .se-img img {
    transform: scale(1.06);
    filter: brightness(0.92) saturate(0.9) contrast(1.05);
}

.se-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,12,22,0.15) 0%, transparent 60%, rgba(201,168,76,0.08) 100%);
    pointer-events: none;
}

.se-body {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.se-num {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(201,168,76,0.08);
    line-height: 1;
    position: absolute;
    top: 28px;
    right: 36px;
}

.se-overline {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.se-body h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 20px;
}

.se-body h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s ease;
}

.se-item:hover .se-body h3::after {
    width: 60px;
}

.se-body p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 12px;
}

.se-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.se-tags span {
    padding: 6px 16px;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    border: 1px solid rgba(201,168,76,0.15);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.se-tags span:hover {
    background: rgba(201,168,76,0.05);
    border-color: rgba(201,168,76,0.35);
}

/* ===== SERVICIOS ===== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    padding: 44px 40px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
    align-items: start;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s ease;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201,168,76,0.02), transparent 30%);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-item:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    transform: translateX(6px);
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:hover::after {
    opacity: 1;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    min-width: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--gold), rgba(201,168,76,0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-emoji {
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    transition: all var(--transition);
}

.service-emoji svg {
    width: 28px;
    height: 28px;
}

.service-item:hover .service-emoji {
    transform: scale(1.08);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 6px 20px rgba(201,168,76,0.1);
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-content p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* Commitment */
.commitment-box {
    background: var(--primary-dark);
    padding: 72px 60px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.1);
}

.commitment-box::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201,168,76,0.06);
    pointer-events: none;
}

.commitment-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.04), transparent 60%);
}

.commitment-box h3 {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.commitment-box p {
    color: rgba(255,255,255,0.55);
    max-width: 680px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

/* ===== CONTACTO ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-detail .icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--primary-dark);
    border: 1px solid rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
    transition: all var(--transition);
}

.contact-detail:hover .icon-wrap {
    background: var(--gold);
    color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(201,168,76,0.2);
}

.contact-detail .detail-text strong {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-detail .detail-text span,
.contact-detail .detail-text a {
    color: var(--gray);
    font-size: 0.92rem;
}

.contact-detail .detail-text a:hover {
    color: var(--gold);
}

.offices {
    margin-top: 48px;
}

.offices h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

/* Mini map in contact info */
.mini-map-wrap {
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.15);
}

#mini-map {
    width: 100%;
    height: 100%;
    background: #0d1117;
}

.mini-map-tooltip {
    background: rgba(6,12,22,0.85) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76,0.2) !important;
    border-radius: 6px !important;
    color: rgba(255,255,255,0.85) !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    padding: 4px 10px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
}

.mini-map-tooltip::before {
    border-top-color: rgba(6,12,22,0.85) !important;
}

/* Canarias inset - home map */
.canarias-inset {
    position: absolute;
    bottom: 40px;
    left: 30px;
    width: 180px;
    height: 130px;
    z-index: 800;
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(6,12,22,0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.canarias-inset::before {
    content: 'Canarias';
    position: absolute;
    top: 6px;
    left: 8px;
    z-index: 801;
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(201,168,76,0.6);
    pointer-events: none;
}

/* Canarias inset - mini map (contacto) */
.mini-map-wrap {
    position: relative;
}

.canarias-inset-mini {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 120px;
    height: 90px;
    z-index: 800;
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(6,12,22,0.9);
    border-radius: 4px;
}

.canarias-inset-mini::before {
    content: 'Canarias';
    position: absolute;
    top: 4px;
    left: 6px;
    z-index: 801;
    font-family: 'Inter', sans-serif;
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(201,168,76,0.6);
    pointer-events: none;
}

.office-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.office-tags span {
    padding: 12px 28px;
    background: var(--primary-dark);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(201,168,76,0.15);
    transition: all var(--transition);
}

.office-tags span:hover {
    background: var(--gold);
    color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(201,168,76,0.2);
}

/* Contact Form */
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0ddd5;
    background: var(--bg-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    transition: all var(--transition);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 2;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card .blog-img {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    padding: 24px;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.blog-img::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    z-index: 1;
}

.blog-img span {
    position: relative;
    z-index: 2;
}

.blog-img.bg-1 {
    background: linear-gradient(135deg, #0a2218, #1a4d2e, #0f3322);
}

.blog-img.bg-2 {
    background: linear-gradient(135deg, #0b1526, #1b3555, #0d1b2a);
}

.blog-img.bg-3 {
    background: linear-gradient(135deg, #1a1008, #3d2b1f, #241a10);
}

.blog-card .blog-body {
    padding: 32px;
}

.blog-card .blog-date {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.blog-card p {
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.blog-card .read-more {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.blog-card .read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.blog-card:hover .read-more::after {
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    padding: 80px 0 32px;
    color: rgba(255,255,255,0.45);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 0.75rem;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-col .footer-logo img {
    height: 36px;
    filter: drop-shadow(0 2px 6px rgba(201,168,76,0.15));
}

.footer-col .footer-logo span {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    font-size: 0.85rem;
    transition: all var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-col ul a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 16px;
}

.footer-col ul a:hover::before {
    width: 8px;
}

.footer-col .contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.footer-col .contact-line .icon {
    color: var(--gold);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 1px;
}

.footer-legal {
    margin-top: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===== CREDENTIALS MARQUEE ===== */
.credentials-section {
    overflow: hidden;
}

.credentials-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.credentials-track-wrapper::before,
.credentials-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.credentials-track-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-light), transparent);
}

.credentials-track-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-light), transparent);
}

.credentials-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.credentials-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.4s ease;
    flex-shrink: 0;
}

.credentials-track img:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-line-1 { font-size: 4.5rem; }
    .hero-line-2 { font-size: 2.4rem; }
    .hero-side-text { display: none; }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .se-item {
        grid-template-columns: 1fr;
    }

    .se-item--reverse {
        direction: ltr;
    }

    .se-img img {
        aspect-ratio: 16/9;
    }

    .se-body {
        padding: 36px 28px;
    }

    .se-num {
        font-size: 3rem;
        top: 20px;
        right: 24px;
    }

    .sectors-elegant {
        gap: 60px;
    }

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

    .why-item::after { display: none; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.4);
        border-left: 1px solid rgba(201,168,76,0.1);
    }

    .nav-links.open { right: 0; }

    .nav-links a {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .hamburger { display: flex; }

    .hero { min-height: 70vh; }
    .hero-line-1 { font-size: 3.5rem; letter-spacing: 6px; }
    .hero-line-2 { font-size: 1.8rem; }
    .hero p { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-badge span:last-child { font-size: 0.6rem; letter-spacing: 2px; }

    .page-hero h1 { font-size: 2.2rem; }
    .page-hero { padding: 150px 0 80px; }

    .section { padding: 80px 0; }
    .section-header { margin-bottom: 50px; }
    .section-header h2 { font-size: 2rem; }

    .cards-grid .card { flex: 0 1 100%; min-width: 0; }
    .pillars-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .commitment-box { padding: 48px 28px; }

    .about-visual .decorative-box::after { display: none; }

    .service-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px 28px;
    }

    .service-number {
        text-align: left;
        font-size: 1.6rem;
    }

    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    .hero-line-1 { font-size: 2.8rem; letter-spacing: 4px; }
    .hero-line-2 { font-size: 1.5rem; }

    .page-hero { padding: 130px 0 60px; }
    .page-hero h1 { font-size: 1.7rem; }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cta-section h2 { font-size: 1.8rem; }

    .section-header h2 { font-size: 1.6rem; }
}

/* ===== SELECTION & SCROLLBAR ===== */
::selection {
    background: rgba(201,168,76,0.2);
    color: var(--primary-dark);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(201,168,76,0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(201,168,76,0.5);
}

/* ===== LUXURY ENHANCEMENTS ===== */

/* Noise texture overlay on dark sections */
.hero::after,
.cta-section .noise,
.page-hero .noise {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
}

/* Cursor-following radial glow on dark sections */
.hero,
.cta-section,
.page-hero {
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.hero .cursor-glow,
.page-hero .cursor-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(201,168,76,0.04), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Glassmorphism mobile nav */
@media (max-width: 768px) {
    .nav-links {
        background: rgba(6,12,22,0.95) !important;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
    }
}

/* Premium card glass border effect */
.card {
    background: linear-gradient(145deg, var(--white), #faf9f6);
}

.card:hover {
    background: linear-gradient(145deg, var(--white), #fefdfb);
}

/* Enhanced section light with subtle pattern */
.section-light {
    background:
        linear-gradient(135deg, rgba(201,168,76,0.015) 0%, transparent 50%),
        var(--bg-light);
}

/* Animated gold border for commitment box */
@keyframes border-glow {
    0%, 100% { border-color: rgba(201,168,76,0.1); }
    50% { border-color: rgba(201,168,76,0.25); }
}

.commitment-box {
    animation: border-glow 4s ease-in-out infinite;
}

/* Premium hover glow on office tags */
.office-tags span {
    position: relative;
    overflow: hidden;
}

.office-tags span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.1), transparent);
    transition: left 0.5s;
}

.office-tags span:hover::before {
    left: 100%;
}

/* Form luxury: animated underline focus */
.form-group {
    position: relative;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s ease;
}

.form-group:focus-within::after {
    width: 100%;
}

/* Blog card image zoom on hover */
.blog-card .blog-img {
    transition: all 0.6s ease;
    overflow: hidden;
}

.blog-card:hover .blog-img {
    background-size: 110%;
}

/* Gold line animation on visible */
.gold-line {
    animation: line-grow 1s ease forwards;
}

/* Elegant separator ornament */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}

.ornament .line-left {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3));
}

.ornament .line-right {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent);
}

.ornament .diamond-sm {
    width: 6px;
    height: 6px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

/* Large quote decoration for about / nosotros */
.quote-deco {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(201,168,76,0.2);
    margin: 24px 0;
}

.quote-deco::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(201,168,76,0.08);
    line-height: 1;
}

/* Stats counter row for home page */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--primary-dark);
    border: 1px solid rgba(201,168,76,0.08);
    position: relative;
    overflow: hidden;
}

.stats-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.03), transparent 60%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 48px 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.12), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), #f0dfa0, var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item { padding: 32px 16px; }
    .stat-item .stat-number { font-size: 2.2rem; }
    .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr 1fr; }
}


/* Pillar hover icon glow */
.pillar:hover .number {
    background: linear-gradient(135deg, rgba(201,168,76,0.35), rgba(201,168,76,0.1));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Service item number pulse on hover */
.service-item:hover .service-number {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Premium loading animation for page */
@keyframes page-reveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: page-reveal 0.6s ease;
}

/* Luxury contact info overline */
.contact-info .overline {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

/* Values grid small screens */
@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CASOS DE ÉXITO ===== */
.case-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 28px;
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.case-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.2));
}

.case-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 36px;
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.case-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.case-ref {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    font-family: 'Inter', sans-serif;
}

.case-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    padding: 40px 36px;
    align-items: start;
}

.case-info .overline {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.case-info h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.case-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.case-info .case-type {
    color: var(--text);
    font-weight: 500;
    font-size: 0.88rem;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.case-tags span {
    padding: 6px 16px;
    background: rgba(201,168,76,0.06);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(201,168,76,0.12);
    text-transform: uppercase;
}

.case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(0,0,0,0.06);
    min-width: 280px;
}

.metric {
    text-align: center;
    padding: 28px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    border-right: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}

.metric:hover {
    background: rgba(201,168,76,0.03);
}

.metric:nth-child(2n) {
    border-right: none;
}

.metric:nth-last-child(-n+2) {
    border-bottom: none;
}

.metric-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
}

@media (max-width: 768px) {
    .case-body {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }
    .case-metrics {
        min-width: unset;
    }
    .case-header {
        padding: 16px 24px;
    }
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
}

.team-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all var(--transition);
}

.team-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

.team-card .team-img {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.team-card .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.04);
}

.team-card .team-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(6,12,22,0.3), transparent);
    pointer-events: none;
}

.team-card .team-body {
    padding: 32px;
    text-align: center;
}

.team-card .team-body h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.team-card .team-body .team-role {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.team-card .team-body p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-card .team-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.team-card .team-contact a {
    font-size: 0.82rem;
    color: var(--gray);
    transition: color var(--transition);
}

.team-card .team-contact a:hover {
    color: var(--gold);
}

/* Partner badge */
.partner-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    flex-wrap: wrap;
}

.partner-item {
    text-align: center;
    padding: 24px 40px;
    border: 1px solid rgba(201,168,76,0.12);
    transition: all var(--transition);
}

.partner-item:hover {
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 8px 30px rgba(201,168,76,0.08);
}

.partner-logo {
    max-height: 150px;
    width: auto;
    display: block;
    margin: 0 auto 12px;
    object-fit: contain;
}

.partner-item .partner-desc {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== ARTICLE / BLOG POST PAGES ===== */
.article-content {
    max-width: 780px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding-bottom: 28px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.article-meta span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
}

.article-meta .article-date {
    color: var(--gold);
    font-weight: 600;
}

.article-meta .article-category {
    background: var(--gold-dim);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
}

.article-content .article-lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 36px;
    font-weight: 300;
}

.article-content h2 {
    font-size: 1.6rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    position: relative;
    padding-left: 20px;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.article-content p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 20px;
    color: #3a3a4a;
}

.article-content ul {
    margin: 16px 0 28px 0;
    padding-left: 0;
    list-style: none;
}

.article-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #3a3a4a;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.article-quote {
    margin: 48px 0;
    padding: 36px 40px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    position: relative;
}

.article-quote::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 5rem;
    color: rgba(201,168,76,0.15);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.article-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-quote cite {
    font-size: 0.8rem;
    color: var(--gold);
    font-style: normal;
    letter-spacing: 0.5px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(201,168,76,0.2);
}

.article-tags span {
    background: var(--gold-dim);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.article-nav {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

@media (max-width: 768px) {
    .article-content .article-lead {
        font-size: 1.05rem;
    }
    .article-content h2 {
        font-size: 1.3rem;
        margin-top: 36px;
    }
    .article-quote {
        padding: 24px 20px;
    }
    .article-quote blockquote {
        font-size: 1rem;
    }
}

/* ===== MAP SECTION (FULL-WIDTH INTEGRATED) ===== */
.map-section-full {
    position: relative;
    overflow: hidden;
}

#offices-map,
#home-map {
    width: 100%;
    height: 600px;
    background: #0d1117;
    z-index: 1;
}

/* Gradient fades to blend into page */
.map-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--primary-dark) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.map-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--primary-dark) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Title overlay on map */
.map-title-overlay {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.map-title-overlay .overline {
    display: block;
    margin-bottom: 8px;
}

.map-title-overlay h2 {
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.7);
    white-space: nowrap;
}

/* Marker with permanent label */
.ggo-marker-label {
    background: none !important;
    border: none !important;
    position: relative;
}

.gml-dot {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 14px rgba(201,168,76,0.7), 0 0 40px rgba(201,168,76,0.2);
    z-index: 2;
}

.gml-ping {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201,168,76,0.35);
    animation: gml-pulse 3s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: 1;
}

@keyframes gml-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(4); opacity: 0; }
}

.gml-name {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
    pointer-events: none;
}

/* Leaflet zoom controls */
.leaflet-control-zoom {
    border: none !important;
}

.leaflet-control-zoom a {
    background: rgba(6,12,22,0.8) !important;
    backdrop-filter: blur(8px);
    color: var(--gold) !important;
    border: 1px solid rgba(201,168,76,0.15) !important;
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    font-size: 16px !important;
    transition: all 0.3s ease;
}

.leaflet-control-zoom a:hover {
    background: rgba(201,168,76,0.12) !important;
    border-color: rgba(201,168,76,0.35) !important;
}

.leaflet-control-zoom-in {
    border-radius: 8px 8px 0 0 !important;
}

.leaflet-control-zoom-out {
    border-radius: 0 0 8px 8px !important;
}

@media (max-width: 768px) {
    #offices-map,
    #home-map {
        height: 500px;
    }

    .map-title-overlay h2 {
        font-size: 1.5rem;
    }

    .mini-map-wrap {
        height: 200px;
    }

    .gml-name {
        font-size: 11px;
        top: -24px;
    }

    .map-fade-top {
        height: 140px;
    }
}
