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

:root {
    --gold: #c2a48a;
    --gold-light: #d4bca8;
    --gold-dark: #a88a72;
    --dark: #1a181c;
    --navy: #1e1a22;
    --cream: #faf6f2;
    --white: #fff;
    --text: #3a3538;
    --text-light: #9a908c;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
.container { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* --- Nav --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(26, 24, 28, 0.95);
    backdrop-filter: blur(20px);
}

nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-logo span { color: var(--gold); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-right a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-right a:hover { color: var(--gold); }

/* --- Article Hero --- */
.article-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 24, 28, 0.15) 0%, rgba(26, 24, 28, 0.75) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px 72px;
    max-width: 700px;
}

.article-hero-content .label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.article-hero-content h1 {
    font-size: clamp(36px, 6vw, 56px);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 300;
}

.article-hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.article-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

/* --- Article Body --- */
.article-body {
    padding: 80px 0;
}

.article-body h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 20px;
    margin-top: 56px;
}

.article-body h2:first-child { margin-top: 0; }

.article-body p {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.9;
}

.article-body .lead {
    font-size: 17px;
    color: var(--text);
    line-height: 2;
    margin-bottom: 32px;
}

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

.article-body li {
    padding: 14px 0 14px 24px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
    line-height: 1.7;
}

.article-body li:last-child { border-bottom: none; }

.article-body li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.article-body blockquote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    padding: 32px 0;
    margin: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* --- CTA --- */
.article-cta {
    background: var(--cream);
    padding: 80px 0;
    text-align: center;
}

.article-cta .label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.article-cta h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 16px;
}

.article-cta p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* --- Other Experiences --- */
.other-experiences {
    padding: 80px 0;
    text-align: center;
}

.other-experiences h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--dark);
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.other-card {
    position: relative;
    height: 200px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.other-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.other-card:hover img { transform: scale(1.05); }

.other-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(26, 24, 28, 0.8) 100%);
}

.other-card span {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--white);
    z-index: 2;
}

/* --- Footer --- */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}

footer .nav-logo {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 22px;
}

footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .article-hero { height: 50vh; min-height: 380px; }
    .article-hero-content { padding-bottom: 48px; }
    .article-body { padding: 48px 0; }
    .article-cta { padding: 56px 0; }
    .other-grid { grid-template-columns: 1fr; }
    .other-card { height: 160px; }
    .nav-right span.hide-mobile { display: none; }
}
