@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
    /* Media-kit inspired palette (dark charcoal + warm gold) */
    --bg0: #000000;
    --bg1: #000000;
    --panel: rgba(255, 255, 255, 0.035);
    --panel2: rgba(255, 255, 255, 0.055);

    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.72);

    --gold: #b8944b;
    /* warm gold */
    --gold2: #d1b06a;
    /* lighter gold accent */

    --border: rgba(184, 148, 75, 0.25);
    --border2: rgba(255, 255, 255, 0.08);

    --max: 560px;
    --radius: 16px;
    --shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

* {
    box-sizing: border-box;
}

html {
    background-color: #000000;
}

body {
    margin: 0;
    font-family:
        "Manrope",
        "Segoe UI",
        "Helvetica Neue",
        Arial,
        sans-serif;
    color: var(--text);
    background:
        radial-gradient(1200px 800px at 70% 10%,
            rgba(184, 148, 75, 0.09),
            transparent 55%),
        radial-gradient(900px 600px at 10% 25%,
            rgba(255, 255, 255, 0.06),
            transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
    position: relative;
    overflow-x: hidden;
}

/* Subtle grain like the media kit */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 30px 16px 44px;
}

.wrap {
    width: 100%;
    max-width: var(--max);
    text-align: center;
}

/* Header */
.logo {
    width: 150px;
    height: 150px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 2px auto 12px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg,
            rgba(184, 148, 75, 0.14),
            rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.name {
    margin: 0;
    font-size: 26px;
    font-weight: 750;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-family: "Fraunces", "Times New Roman", serif;
}

.tagline {
    margin: 8px 0 10px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.45;
}

.motto {
    margin: 0 0 18px;
    font-size: 13px;
    color: rgba(209, 176, 106, 0.95);
    letter-spacing: 0.25px;
    font-style: italic;
}

h1,
h2,
h3 {
    font-family: "Fraunces", "Times New Roman", serif;
    letter-spacing: 0.4px;
}

/* Social icons */
.social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 6px 0 18px;
}

.social a {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--gold2);
    text-decoration: none;
    background:
        radial-gradient(110px 70px at 30% 20%,
            rgba(184, 148, 75, 0.18),
            transparent 55%),
        rgba(255, 255, 255, 0.03);
    transition:
        transform 0.08s ease,
        background 0.15s ease,
        border-color 0.15s ease;
}

.social a:hover {
    border-color: rgba(184, 148, 75, 0.45);
    background:
        radial-gradient(110px 70px at 30% 20%,
            rgba(184, 148, 75, 0.28),
            transparent 60%),
        rgba(255, 255, 255, 0.04);
}

.social a:active {
    transform: scale(0.98);
}

.social svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

/* Link cards */
.links {
    display: grid;
    gap: 12px;
    margin: 10px 0 18px;
}

.link-card {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius);
    padding: 16px 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: 1px solid rgba(184, 148, 75, 0.28);
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.02));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.08s ease,
        filter 0.15s ease,
        border-color 0.15s ease;
}

.link-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(260px 120px at 20% 20%,
            rgba(184, 148, 75, 0.18),
            transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.link-card:hover {
    border-color: rgba(184, 148, 75, 0.5);
    filter: brightness(1.03);
}

.link-card:active {
    transform: scale(0.99);
}

/* Instagram embed wrapper */
.feed {
    margin-top: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border2);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.spacer {
    height: 10px;
}

/* Subpages */
.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.logo.small {
    width: 110px;
    height: 110px;
    margin-bottom: 4px;
}

.back-link {
    align-self: flex-start;
    text-decoration: none;
    color: var(--gold2);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.2px;
}

.page-title {
    margin: 6px 0 6px;
    font-size: 28px;
    text-transform: uppercase;
}

.page-lead {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.hero {
    display: grid;
    gap: 16px;
    margin: 16px 0 20px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(160deg,
            rgba(184, 148, 75, 0.1),
            rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
    animation: fadeUp 0.6s ease both;
}

.hero-media {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border2);
}

.hero-media img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.section {
    text-align: left;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--border2);
    background: var(--panel);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
    margin-bottom: 16px;
    animation: fadeUp 0.6s ease both;
}

.section-title {
    margin: 0 0 6px;
    font-size: 20px;
}

.section-lead {
    margin: 20px 0 12px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.cards {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.card {
    background: var(--panel2);
    border-radius: 14px;
    border: 1px solid var(--border2);
    padding: 14px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

/* 2 in a row max */
.pill-row {
    margin: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.pill {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    font-size: 12px;
    color: var(--muted);

}

.portfolio {
    display: grid;
    gap: 12px;
}

.portfolio-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border2);
    background: rgba(255, 255, 255, 0.02);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.portfolio-caption {
    padding: 10px 12px 12px;
    font-size: 12.5px;
    color: var(--muted);
}

.story {
    display: grid;
    gap: 16px;
}

.story img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border2);
}

.cta {
    text-align: center;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(140deg,
            rgba(184, 148, 75, 0.16),
            rgba(255, 255, 255, 0.02));
    animation: fadeUp 0.6s ease both;
}

.cta a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.nav-links a {
    color: var(--gold2);
    text-decoration: none;
    font-size: 12.5px;
}

@media (min-width: 720px) {
    .hero {
        grid-template-columns: 1.1fr 1.2fr;
        align-items: center;
    }

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

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

    .story {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: center;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero,
    .section,
    .cta {
        animation: none;
    }
}

@media (max-width: 420px) {
    .name {
        font-size: 22px;
    }

    .tagline {
        font-size: 12.8px;
    }
}