/* ==========================================================================
   Guillaume Latorre — Design Tokens & Global Styles
   ========================================================================== */

:root {
    --blue: #2A8FAD;
    --blue-dark: #1E7090;
    --blue-light: rgba(42,143,173,0.08);
    --terra: #FCAA0A;
    --terra-hover: #E09600;
    --terra-light: rgba(252,170,10,0.1);
    --ocre: #C89B3C;
    --sand: #F7F3ED;
    --sand-warm: #F0E8DC;
    --sand-mid: #E6DDD0;
    --ink: #1C1C1C;
    --ink-soft: #3A3632;
    --stone: #7A7168;
    --white: #FFFFFF;
    --card: #FFFFFF;
    --card-border: #E2DBD1;
    --radius: 8px;
    --radius-lg: 14px;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --blue: #4DBFE0;
        --blue-dark: #3AA8C8;
        --blue-light: rgba(77,191,224,0.1);
        --terra: #FFB830;
        --terra-hover: #FFC850;
        --terra-light: rgba(252,170,10,0.12);
        --ocre: #D4AD5A;
        --sand: #0F1113;
        --sand-warm: #161A1D;
        --sand-mid: #1E2226;
        --ink: #E8E2D8;
        --ink-soft: #C8C0B4;
        --stone: #9A9389;
        --white: #17191C;
        --card: #1A1D21;
        --card-border: #2A2E33;
    }
}
:root[data-theme="dark"] {
    --blue: #4DBFE0;
    --blue-dark: #3AA8C8;
    --blue-light: rgba(77,191,224,0.1);
    --terra: #D88050;
    --terra-hover: #E89060;
    --terra-light: rgba(216,128,80,0.08);
    --ocre: #D4AD5A;
    --sand: #0F1113;
    --sand-warm: #161A1D;
    --sand-mid: #1E2226;
    --ink: #E8E2D8;
    --ink-soft: #C8C0B4;
    --stone: #9A9389;
    --white: #17191C;
    --card: #1A1D21;
    --card-border: #2A2E33;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    background: var(--sand);
    color: var(--ink);
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terra); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terra-hover); }

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
}

.script { font-family: 'Caveat', cursive; font-weight: 600; }
.serif { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }

.eyebrow {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
@media (max-width: 768px) { .section-pad { padding: 3rem 0; } }

.bg-white { background: var(--white); }
.bg-sand { background: var(--sand); }
.bg-warm { background: var(--sand-warm); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.7em 1.6em;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-terra { background: var(--terra); color: var(--ink); font-weight: 600; }
.btn-terra:hover { background: var(--terra-hover); color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--card-border); }
.btn-outline:hover { border-color: var(--stone); }
.btn-white { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-white:hover { background: rgba(255,255,255,0.25); }

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--sand);
    border-bottom: 1px solid var(--card-border);
    padding: 0 1.5rem;
}
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 90px;
    gap: 2rem;
}

/* Centered links when no logo in nav (front page) */
.nav--float .nav-inner {
    justify-content: center;
}

/* Floating nav over hero (front page only) */
.nav--float {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
}
.nav--float .nav-links a,
.nav--float .nav-links .menu-item a,
.nav--float .menu .menu-item a {
    color: rgba(255,255,255,0.75);
}
.nav--float .nav-links a:hover,
.nav--float .menu .menu-item a:hover {
    color: #fff;
}
.nav--float .nav-links .current-menu-item a,
.nav--float .menu .current-menu-item a {
    color: #fff;
}
.nav--float .nav-links .menu-item-contact a,
.nav--float .menu .menu-item:last-child a {
    color: var(--terra);
    font-weight: 600;
}
.nav--float .nav-social a {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.nav--float .nav-social a:hover {
    background: rgba(255,255,255,0.3);
}
.nav--float .nav-burger span {
    background: #fff;
}

.nav-brand {
    flex-shrink: 0;
}
.nav-brand a,
.nav-brand .custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav-brand .custom-logo {
    height: 70px;
    width: auto;
}

.nav-links,
.nav .menu {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-left: auto;
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.nav-links a,
.nav-links .menu-item a,
.nav .menu .menu-item a {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--stone);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav .menu .menu-item a:hover { color: var(--ink); }
.nav-links .current-menu-item a,
.nav .menu .current-menu-item a { color: var(--ink); }
.nav-links .menu-item-contact a,
.nav .menu .menu-item:last-child a { color: var(--terra); font-weight: 600; }

.nav-social {
    display: flex;
    gap: 0.5rem;
    margin-left: 0.3rem;
}
.nav-social a {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    transition: background 0.2s, color 0.2s;
}
.nav-social a:hover { background: var(--blue); color: #fff; }

.nav-burger {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px;
    flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    margin-left: auto;
    position: relative;
    z-index: 210;
    -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
    display: block; width: 22px; height: 2px;
    background: var(--ink); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}
.nav--float .nav-burger span { background: #fff; }
.nav-burger.active span { background: #fff; }
.nav-burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(12,14,18,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    display: none;
}
.nav-mobile.open {
    display: flex;
}
.nav-mobile-links,
.nav-mobile .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-mobile-links a,
.nav-mobile .menu .menu-item a {
    display: block;
    padding: 0.8rem 1rem;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-mobile-links a:hover,
.nav-mobile .menu .menu-item a:hover { color: #fff; }
.nav-mobile .menu .current-menu-item a { color: var(--terra); }

.nav-lang {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}
.nav-lang ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; gap: 0.3rem;
}
.nav-lang li { display: inline; }
.nav-lang a {
    display: inline-block;
    padding: 0.2em 0.55em;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 4px;
    text-decoration: none;
    color: var(--stone);
    background: var(--blue-light);
    transition: background 0.2s, color 0.2s;
}
.nav-lang a:hover { background: var(--blue); color: #fff; }
.nav--float .nav-lang a {
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.12);
}
.nav--float .nav-lang a:hover {
    color: #fff;
    background: rgba(255,255,255,0.25);
}

.nav-mobile-lang {
    margin-top: 2rem;
    display: flex; gap: 1rem; justify-content: center;
}
.nav-mobile-lang ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; gap: 1rem;
}
.nav-mobile-lang a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-mobile-lang .current-lang a {
    color: var(--terra);
}
.nav-mobile-lang a:hover { color: #fff; }

@media (max-width: 900px) {
    .nav-links, .nav .menu, .nav-social, .nav-lang { display: none; }
    .nav-burger { display: flex; }
    .nav-social.nav-social { display: none; }
}


/* ==========================================================================
   Hero (front page)
   ========================================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    min-height: 560px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue) 50%, #3AA5C4 100%);
    overflow: hidden;
}
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero-photo-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0) 100%),
        linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 40%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 3.8rem 1.5rem 3rem;
    width: 100%;
}

/* Logo inside hero */
.hero-h1 {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.hero-logo {
    margin-bottom: 1.2rem;
}
.hero-logo .custom-logo-link {
    display: inline-block;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}
.hero-logo .custom-logo {
    height: clamp(120px, 20vw, 200px);
    width: auto;
    filter: brightness(0) invert(1);
}
.hero-tagline {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(0.82rem, 1.8vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1rem;
    max-width: 520px;
    line-height: 1.55;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 2px 12px rgba(0,0,0,0.4);
}
.hero-desc {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    max-width: 480px;
    margin: 0 0 1.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 2px 12px rgba(0,0,0,0.4);
}
.hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.hero-social-row { display: flex; align-items: center; gap: 0.8rem; }
.hero-social-icon {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    transition: background 0.2s;
}
.hero-social-icon:hover { background: rgba(255,255,255,0.3); color: #fff; }
.hero-social-icon svg { width: 13px; height: 13px; }
.hero-handle { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.hero-script {
    position: absolute;
    right: 40%; bottom: 3.5rem;
    z-index: 3;
    font-family: 'Caveat', cursive;
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transform: rotate(-4deg);
    text-align: right;
    line-height: 1.35;
}
.hero-location {
    position: absolute;
    right: 5%; top: 4.5rem;
    z-index: 3;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    transform: rotate(3deg);
}

@media (max-width: 768px) {
    .hero-content { padding: 3.5rem 1.5rem 2rem; }
    .hero-bg-img { object-position: left center; }
    .hero-photo-overlay { background: rgba(0,0,0,0.45); }
    .hero-location { display: none; }
    .hero-script { font-size: 1.1rem; }
    .hero-logo .custom-logo { height: 100px; }
}

/* ==========================================================================
   About / Qui je suis
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr 200px;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.about-photo { position: relative; }
.about-photo-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--sand-mid);
    border-radius: var(--radius-lg);
    transform: rotate(-2deg);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: var(--stone);
    font-size: 0.75rem;
    border: 4px solid var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.about-photo-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-photo-caption {
    position: absolute;
    bottom: -8px; left: 50%;
    transform: translateX(-50%) rotate(2deg);
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue);
    white-space: nowrap;
    background: var(--white);
    padding: 0.2em 0.8em;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.about-text h2 {
    font-size: 2rem;
    color: var(--ink);
    margin: 0 0 1rem;
}
.about-text p {
    color: var(--ink-soft);
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}
.about-badges {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 0.5rem;
}
.about-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}
.about-badge-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--terra-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.about-badge-text {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-soft);
    line-height: 1.35;
}
.about-badge-text strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
}

/* ==========================================================================
   3 Univers
   ========================================================================== */

.universes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) { .universes-grid { grid-template-columns: 1fr; } }

.universe-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.universe-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.universe-img {
    height: 180px;
    background: var(--sand-mid);
    display: flex; align-items: center; justify-content: center;
    color: var(--stone);
    font-size: 0.75rem;
    position: relative;
}
.universe-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.universe-icon {
    position: absolute;
    bottom: -18px; left: 1.2rem;
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    border: 3px solid var(--card);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
}
.universe-body { padding: 1.8rem 1.3rem 1.3rem; }
.universe-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--ink);
    margin: 0 0 0.5rem;
}
.universe-desc {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.6;
    margin: 0 0 1rem;
}
.universe-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--terra);
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}
.universe-link:hover { gap: 0.5em; }

/* ==========================================================================
   Costa Blanca
   ========================================================================== */

.costa {
    background: linear-gradient(135deg, var(--sand-warm) 0%, var(--sand) 100%);
    position: relative;
    overflow: hidden;
}
.costa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) { .costa-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.costa h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--ink);
    line-height: 1.1;
    margin: 0 0 1rem;
}
.costa p {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0 0 1.5rem;
}
.costa-script {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--blue);
    line-height: 1.5;
    transform: rotate(-2deg);
    display: inline-block;
    text-align: center;
}
.costa-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.costa-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    width: 100%;
}
.costa-photo {
    aspect-ratio: 1;
    background: var(--sand-mid);
    border-radius: var(--radius);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    color: var(--stone);
    font-size: 0.7rem;
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}
.costa-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.costa-photo-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.8rem 0.6rem 0.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.costa-photo:nth-child(2) { transform: rotate(2deg); }
.costa-photo:nth-child(3) { transform: rotate(-1deg); }

/* ==========================================================================
   Réseaux sociaux
   ========================================================================== */

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) { .social-grid { grid-template-columns: 1fr; gap: 2rem; } }

.social-text h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 0.8rem;
}
.social-text p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0 0 1.5rem;
}
.social-platforms { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.social-platform { display: flex; align-items: center; gap: 0.5rem; }
.social-platform-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}
.social-platform-icon svg { width: 18px; height: 18px; }
.social-platform-meta { font-size: 0.78rem; line-height: 1.3; }
.social-platform-meta strong { display: block; font-weight: 600; color: var(--ink); font-size: 0.88rem; }
.social-platform-meta span { color: var(--stone); }

.social-videos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}
@media (max-width: 500px) { .social-videos { grid-template-columns: repeat(2, 1fr); } }

.social-video {
    aspect-ratio: 9/12;
    background: var(--sand-mid);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.social-video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.social-video-play::after {
    content: '';
    width: 0; height: 0;
    border-left: 8px solid var(--terra-hover);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}
.social-video-label {
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    padding: 1.5rem 0.6rem 0.6rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

/* ==========================================================================
   Parcours
   ========================================================================== */

.parcours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) { .parcours-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.parcours h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--ink);
    margin: 0 0 0.8rem;
    line-height: 1.15;
}
.parcours p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0 0 1rem;
}
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.skill-tag {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.35em 0.9em;
    border-radius: 20px;
    background: var(--blue-light);
    color: var(--blue-dark);
}

/* ==========================================================================
   Section Header (generic)
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--ink);
    margin: 0.3rem 0 0;
}
.section-header-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--terra);
    margin-top: 1.5rem;
}

/* ==========================================================================
   Article Cards
   ========================================================================== */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) { .articles-grid { grid-template-columns: 1fr; } }

.article-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.article-card a { color: inherit; text-decoration: none; display: block; }

.article-img {
    height: 200px;
    background: var(--sand-mid);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: var(--stone);
    font-size: 0.7rem;
}
.article-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.article-card:hover .article-img img { transform: scale(1.03); }

.article-body { padding: 1.2rem; }
.article-cat {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.3rem;
}
.article-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 0.4rem;
}
.article-excerpt {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.55;
    margin: 0 0 0.8rem;
}
.article-date {
    font-size: 0.75rem;
    color: var(--stone);
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--stone);
}

/* ==========================================================================
   Page Costa Blanca
   ========================================================================== */

.costa-page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.costa-page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.costa-page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.costa-page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0.1) 100%
    );
}
.costa-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    max-width: 680px;
}
.costa-page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin: 0.5rem 0 1rem;
    line-height: 1.1;
}
.costa-page-lead {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
}

.costa-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) { .costa-cards { grid-template-columns: 1fr; } }

.costa-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.costa-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.costa-card-img {
    height: 220px;
    overflow: hidden;
}
.costa-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.costa-card:hover .costa-card-img img { transform: scale(1.03); }
.costa-card-body {
    padding: 1.3rem 1.4rem;
}
.costa-card-body h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin: 0 0 0.5rem;
}
.costa-card-body p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--stone);
    margin: 0;
}

/* ==========================================================================
   Page Projets — Timeline
   ========================================================================== */

.timeline {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding-left: 2.5rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--card-border);
}
.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    border: 2px solid var(--sand);
    transform: translateX(-5px);
}
.timeline-item--highlight::before {
    background: var(--terra);
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 4px rgba(200,155,60,0.2);
}
.timeline-date {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--blue);
    margin-bottom: 0.3rem;
}
.timeline-item--highlight .timeline-date {
    color: var(--terra);
}
.timeline-content h3 {
    font-size: 1.05rem;
    color: var(--ink);
    margin: 0 0 0.4rem;
    font-weight: 600;
}
.timeline-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--stone);
    margin: 0;
}

.timeline-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--terra);
}
.timeline-link:hover { color: var(--blue); }

@media (max-width: 600px) {
    .timeline { padding-left: 2rem; }
    .timeline-item::before { left: -2rem; }
}

/* ==========================================================================
   CTA / Contact
   ========================================================================== */

.cta-section {
    background: var(--blue);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath d='M0 80 Q50 60 100 80 T200 80' fill='none' stroke='%23fff' stroke-width='0.6' opacity='0.07'/%3E%3Cpath d='M0 120 Q50 100 100 120 T200 120' fill='none' stroke='%23fff' stroke-width='0.6' opacity='0.05'/%3E%3Cpath d='M0 160 Q50 140 100 160 T200 160' fill='none' stroke='%23fff' stroke-width='0.6' opacity='0.04'/%3E%3Cpath d='M0 40 Q50 20 100 40 T200 40' fill='none' stroke='%23fff' stroke-width='0.6' opacity='0.06'/%3E%3C/svg%3E");
}
.cta-section::after {
    content: '☀ Hola desde la Costa Blanca ♥';
    position: absolute;
    bottom: -0.4rem;
    right: -1rem;
    font-family: 'Caveat', cursive;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
}
.cta-deco-top {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-family: 'Caveat', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: rgba(255,255,255,0.045);
    white-space: nowrap;
    pointer-events: none;
    transform: rotate(-4deg);
    line-height: 1.3;
}
.cta-deco-mid {
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%) rotate(6deg);
    pointer-events: none;
}
.cta-deco-mid svg { opacity: 0.04; }
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin: 0 0 0.8rem;
    line-height: 1.15;
}
.cta-section p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}
.cta-btns { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.cta-script {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--sand-warm);
    border-top: 1px solid var(--card-border);
    padding: 2.5rem 1.5rem;
}
.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-brand {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
}
.footer-links,
.footer .menu {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links a,
.footer .menu .menu-item a {
    font-size: 0.82rem;
    color: var(--stone);
    text-decoration: none;
}
.footer-links a:hover,
.footer .menu .menu-item a:hover { color: var(--ink); }

.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.78rem;
    color: var(--stone);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
}

/* ==========================================================================
   Single Post
   ========================================================================== */

.post-header {
    padding: 3rem 0 2rem;
    text-align: center;
}
.post-header .eyebrow { margin-bottom: 0.8rem; }
.post-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    max-width: 800px;
    margin: 0 auto 1rem;
    color: var(--ink);
}
.post-header .post-meta {
    font-size: 0.85rem;
    color: var(--stone);
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.post-header .post-meta span { display: flex; align-items: center; gap: 0.3em; }

.post-featured-img {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.post-featured-img img {
    width: 100%;
    height: auto;
}

.post-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink-soft);
}
.post-content h2 {
    font-size: 1.6rem;
    color: var(--ink);
    margin: 2.5rem 0 1rem;
}
.post-content h3 {
    font-size: 1.25rem;
    color: var(--ink);
    margin: 2rem 0 0.8rem;
}
.post-content p { margin: 0 0 1.5rem; }
.post-content a { color: var(--terra); text-decoration: underline; text-underline-offset: 2px; }
.post-content img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
}
.post-content blockquote {
    border-left: 3px solid var(--terra);
    margin: 2rem 0;
    padding: 0.5rem 1.5rem;
    font-style: italic;
    color: var(--stone);
}
.post-content pre {
    background: var(--sand-warm);
    padding: 1.2rem;
    border-radius: var(--radius);
    overflow-x: auto;
    font-size: 0.88rem;
    line-height: 1.6;
}
.post-content code {
    font-size: 0.88em;
    background: var(--sand-warm);
    padding: 0.15em 0.4em;
    border-radius: 3px;
}
.post-content pre code {
    background: none;
    padding: 0;
}
.post-content ul, .post-content ol {
    padding-left: 1.5rem;
    margin: 0 0 1.5rem;
}
.post-content li { margin-bottom: 0.5rem; }

.post-footer {
    max-width: 720px;
    margin: 3rem auto 0;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--card-border);
}
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.post-tags a {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    background: var(--sand-warm);
    color: var(--stone);
}
.post-tags a:hover { background: var(--sand-mid); color: var(--ink); }

.post-navigation {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.post-navigation a {
    font-size: 0.88rem;
    color: var(--ink);
    line-height: 1.4;
}
.post-navigation a span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--terra);
    margin-bottom: 0.3rem;
}
.post-navigation .next { text-align: right; }

/* ==========================================================================
   Blog listing (home.php)
   ========================================================================== */

.blog-header {
    padding: 1.5rem 0;
    text-align: center;
}
.blog-header h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--ink);
    margin: 0.3rem 0 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.6em;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    border: 1.5px solid var(--card-border);
    transition: background 0.2s, border-color 0.2s;
}
.pagination a:hover { border-color: var(--stone); background: var(--sand-warm); }
.pagination .current {
    background: var(--terra);
    color: #fff;
    border-color: var(--terra);
}

/* ==========================================================================
   Archive
   ========================================================================== */

.archive-header {
    padding: 3rem 0;
    text-align: center;
}
.archive-header .eyebrow { margin-bottom: 0.5rem; }
.archive-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--ink);
    margin: 0;
}
.archive-header p {
    color: var(--stone);
    font-size: 0.95rem;
    margin: 0.5rem 0 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Search
   ========================================================================== */

.search-header { padding: 3rem 0; text-align: center; }
.search-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--ink);
    margin: 0 0 1.5rem;
}
.search-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
}
.search-form input[type="search"] {
    flex: 1;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    padding: 0.7em 1em;
    border: 1.5px solid var(--card-border);
    border-radius: 6px;
    background: var(--card);
    color: var(--ink);
    outline: none;
}
.search-form input[type="search"]:focus { border-color: var(--blue); }
.search-form button {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.7em 1.4em;
    border-radius: 6px;
    border: none;
    background: var(--terra);
    color: #fff;
    cursor: pointer;
}

/* ==========================================================================
   404
   ========================================================================== */

.page-404 {
    text-align: center;
    padding: 5rem 1.5rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-404 h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--sand-mid);
    margin: 0;
    line-height: 1;
}
.page-404 h2 {
    font-size: 1.6rem;
    color: var(--ink);
    margin: 0.5rem 0 1rem;
}
.page-404 p {
    color: var(--stone);
    max-width: 450px;
    margin: 0 auto 2rem;
}

/* ==========================================================================
   Comments
   ========================================================================== */

.comments-area {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}
.comments-title {
    font-size: 1.4rem;
    color: var(--ink);
    margin: 0 0 1.5rem;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comment-list .comment {
    border-bottom: 1px solid var(--card-border);
    padding: 1.5rem 0;
}
.comment-author {
    font-weight: 600;
    color: var(--ink);
    font-size: 0.95rem;
}
.comment-date {
    font-size: 0.78rem;
    color: var(--stone);
    margin-left: 0.5rem;
}
.comment-body p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0.5rem 0 0;
}
.comment-respond { margin-top: 2rem; }
.comment-respond label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.3rem;
}
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    padding: 0.6em 0.9em;
    border: 1.5px solid var(--card-border);
    border-radius: 6px;
    background: var(--card);
    color: var(--ink);
    margin-bottom: 1rem;
}
.comment-respond textarea { min-height: 120px; resize: vertical; }
.comment-respond input:focus,
.comment-respond textarea:focus { border-color: var(--blue); outline: none; }

/* ==========================================================================
   Page template
   ========================================================================== */

.page-header {
    padding: 3rem 0 2rem;
    text-align: center;
}
.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink);
    margin: 0;
}
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--ink-soft);
}
.page-content h2 { font-size: 1.5rem; color: var(--ink); margin: 2rem 0 0.8rem; }
.page-content h3 { font-size: 1.2rem; color: var(--ink); margin: 1.5rem 0 0.6rem; }
.page-content p { margin: 0 0 1.2rem; }
.page-content a { color: var(--terra); text-decoration: underline; text-underline-offset: 2px; }
.page-content img { border-radius: var(--radius); margin: 1rem 0; }

/* ==========================================================================
   Animations
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ==========================================================================
   Page Contact
   ========================================================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}
.contact-form-wrap { min-width: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
@media (max-width: 500px) { .contact-row { grid-template-columns: 1fr; } }
.contact-field { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}
.contact-field input,
.contact-field textarea {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    padding: 0.7em 1em;
    border: 1.5px solid var(--card-border);
    border-radius: 6px;
    background: var(--card);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
}
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--blue); }
.contact-field textarea { resize: vertical; min-height: 140px; }

.contact-info-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
}
.contact-info-card h3 {
    font-size: 1.1rem;
    color: var(--ink);
    margin: 0 0 1.2rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-top: 1px solid var(--card-border);
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.4;
}
.contact-info-item strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
}
.contact-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    color: #2e7d32;
}
.contact-error {
    background: #fce4ec;
    border: 1px solid #ef9a9a;
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    color: #c62828;
}
.contact-social-links {
    display: flex;
    gap: 0.6rem;
    padding: 0.8rem 0 0;
}
.contact-social-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s;
}
.contact-social-links a:hover .contact-social-icon { transform: scale(1.1); }

/* ==========================================================================
   Page À propos
   ========================================================================== */

.about-hero {
    padding: 3.5rem 0 3rem;
    text-align: center;
}
.about-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}
.about-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--ink);
    margin: 0.5rem 0 1.2rem;
    line-height: 1.1;
}
.about-lead {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0;
}

.about-two-col {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 768px) {
    .about-two-col { grid-template-columns: 1fr; gap: 2rem; }
}
.presse-profile-photo {
    float: left;
    width: 150px;
    border-radius: 10px;
    margin: 0.3rem 1.5rem 1rem 0;
    transform: rotate(-4deg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.about-col-text h2 {
    font-size: 1.8rem;
    color: var(--ink);
    margin: 0 0 1.2rem;
}
.about-col-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 1rem;
}

.about-facts-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}
.about-fact {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.4;
}
.about-fact strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
}
.about-fact-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--terra-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.about-story {
    max-width: 720px;
    margin: 0 auto;
}
.about-story h2 {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    color: var(--ink);
    margin: 0 0 1.2rem;
}
.about-story p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin: 0 0 1.2rem;
}
.about-highlight {
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 500;
    border-left: 3px solid var(--terra);
    padding-left: 1.2rem;
    margin-top: 1.5rem;
}
.about-highlight em {
    font-family: 'Caveat', cursive;
    font-style: normal;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--blue);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) { .about-cards { grid-template-columns: 1fr; } }

.about-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.about-card-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}
.about-card h3 {
    font-size: 1.15rem;
    color: var(--ink);
    margin: 0 0 0.6rem;
}
.about-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--stone);
    margin: 0;
}

/* Citation */
.about-quote-section {
    background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding: 4rem 0;
    text-align: center;
}
.about-quote blockquote {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 0;
    border: none;
    position: relative;
}
.about-quote blockquote::before {
    content: '\201C';
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 5rem;
    color: rgba(255,255,255,0.2);
    position: absolute;
    top: -2.5rem;
    left: -0.5rem;
    line-height: 1;
}
.about-quote-text {
    max-width: 600px;
    margin: 0 auto;
}
.about-quote-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin: 0 0 0.8rem;
}

/* Social links */
.about-social-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.about-social-section h2 {
    font-size: 1.6rem;
    color: var(--ink);
    margin: 0 0 0.6rem;
}
.about-social-section > p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin: 0 0 1.5rem;
    line-height: 1.65;
}
.about-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.about-social-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem 0.6rem 0.6rem;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    color: var(--ink);
}
.about-social-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Polaroid photos */
.about-polaroid {
    position: relative;
    display: inline-block;
    border: 5px solid var(--white);
    border-radius: var(--radius);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 260px;
}
.about-polaroid img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}
.about-polaroid-caption {
    display: block;
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--white);
    padding: 0.4rem 0.6rem;
}
.about-polaroid--left {
    float: left;
    margin: 0.3rem 2rem 1rem 0;
    transform: rotate(-3deg);
}
.about-polaroid--right {
    float: right;
    margin: 0.3rem 0 1rem 2rem;
    transform: rotate(2deg);
}

.about-story-photo { overflow: hidden; }

@media (max-width: 600px) {
    .about-polaroid--left,
    .about-polaroid--right {
        float: none;
        display: block;
        margin: 0 auto 1.5rem;
        transform: rotate(-2deg);
        max-width: 220px;
    }
}
