:root {
    --bg: #0e0a08;
    --bg-warm: #1a1310;
    --bg-card: #221714;
    --bg-soft: rgba(34, 23, 20, 0.6);
    --line: rgba(243, 241, 232, 0.08);
    --line-strong: rgba(243, 241, 232, 0.18);
    --text: #f3f1e8;
    --text-soft: rgba(243, 241, 232, 0.7);
    --text-faint: rgba(243, 241, 232, 0.4);
    --accent: #ec003f;
    --accent-soft: #f87171;
    --hue: #a855f7;
    --serif: "Instrument Serif", "Times New Roman", serif;
    --display: "Instrument Sans", "Inter", system-ui, sans-serif;
    --body: "Inter", system-ui, sans-serif;
    --r-sm: 12px;
    --r: 18px;
    --r-lg: 28px;
    --r-pill: 999px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}

.warm-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 100% 60% at 50% 110%, rgba(248, 113, 113, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(168, 85, 247, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 10% 50%, rgba(236, 0, 63, 0.06) 0%, transparent 60%),
        var(--bg);
}
header, main, footer { position: relative; z-index: 1; }

.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(14, 10, 8, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap.scrolled { background: rgba(14, 10, 8, 0.94); }
.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.brand {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
}
.brand .serif {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent-soft);
}
.nav-mid {
    display: flex;
    gap: 2rem;
    color: var(--text-soft);
    font-size: 0.92rem;
    font-family: var(--display);
}
.nav-mid a:hover { color: var(--text); }
.get-started {
    background: var(--accent);
    color: var(--text);
    padding: 0.6rem 1.3rem;
    border-radius: var(--r-pill);
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.92rem;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 28px rgba(236, 0, 63, 0.32);
}
.get-started:hover { transform: translateY(-1px); background: #ff1850; }

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    border-radius: var(--r-pill);
    font-family: var(--display);
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
}
.btn-pill-primary {
    background: var(--accent);
    color: var(--text);
    box-shadow: 0 14px 40px rgba(236, 0, 63, 0.35);
}
.btn-pill-primary:hover {
    transform: translateY(-2px);
    background: #ff1850;
    box-shadow: 0 20px 50px rgba(236, 0, 63, 0.55);
}
.btn-pill-ghost {
    background: rgba(243, 241, 232, 0.08);
    color: var(--text);
    border: 1px solid var(--line-strong);
}
.btn-pill-ghost:hover { background: rgba(243, 241, 232, 0.14); }
.btn-pill-ghost-soft {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-strong);
    width: 100%;
}
.btn-pill-ghost-soft:hover { background: rgba(243, 241, 232, 0.06); }
.btn-pill-lg { padding: 1.15rem 2.4rem; font-size: 1.05rem; }

.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1.6rem 6rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--accent-soft);
    font-family: var(--display);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.hero h1 {
    font-family: var(--display);
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0 0 1.5rem;
}
.hero h1 em { font-size: 1em; color: var(--accent-soft); }
.hero p {
    color: var(--text-soft);
    max-width: 480px;
    font-size: 1.1rem;
    margin: 0 0 2.4rem;
    line-height: 1.55;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.4rem;
}
.trust-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-faint);
    font-size: 0.9rem;
}
.trust-row p { margin: 0; }
.trust-row strong { color: var(--text); font-weight: 600; }
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
}

.phone-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(248, 113, 113, 0.08);
    transition: transform 0.4s ease;
}
.phone-card:hover { transform: translateY(-6px) rotate(0.4deg); }
.phone-photo {
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-warm);
}
.phone-meta { padding: 1.4rem 1.6rem 1.6rem; }
.phone-meta h3 {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0 0 0.4rem;
}
.phone-meta h3 em { color: var(--accent-soft); }
.bio-line {
    color: var(--text-faint);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    font-family: var(--display);
}
.bio-tags {
    display: flex;
    gap: 0.4rem;
    margin: 1rem 0 1rem;
    flex-wrap: wrap;
}
.bio-tags span {
    background: rgba(243, 241, 232, 0.08);
    padding: 0.3rem 0.7rem;
    border-radius: var(--r-pill);
    font-size: 0.78rem;
    color: var(--text-soft);
}
.phone-meta p {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0 0 1.2rem;
}
.swipe-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--line);
}
.swipe {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.swipe-x { background: rgba(243, 241, 232, 0.1); color: var(--text); }
.swipe-h { background: rgba(168, 85, 247, 0.18); color: var(--hue); }

.kicker {
    display: inline-block;
    color: var(--accent-soft);
    font-family: var(--display);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

.mission {
    max-width: 820px;
    margin: 0 auto;
    padding: 6rem 1.6rem;
    text-align: center;
}
.mission h2 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 1.8rem;
}
.mission h2 em { color: var(--accent-soft); }
.mission p {
    color: var(--text-soft);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
}

.meet { max-width: 1280px; margin: 0 auto; padding: 6rem 1.6rem; }
.meet .head { text-align: center; margin-bottom: 4rem; }
.meet .head h2 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
}
.meet .head h2 em { color: var(--accent-soft); }
.meet .head p { color: var(--text-soft); margin: 0; font-size: 1.05rem; }
.head-cta { text-align: center; margin-top: 3rem; }

.profile-axis {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin: 2.6rem 0 1.4rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-soft);
}
.profile-axis em {
    color: var(--accent-soft);
    font-family: var(--serif);
    font-style: italic;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
}
.profile-axis:first-of-type { margin-top: 0; }
.profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
@media (max-width: 1100px) { .profile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .profile-grid { grid-template-columns: 1fr; } }
.profile {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.profile:hover {
    transform: translateY(-5px);
    border-color: var(--accent-soft);
    box-shadow: 0 18px 40px rgba(248, 113, 113, 0.18);
}
.profile-photo {
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center top;
    background-color: var(--bg-warm);
    transition: transform 0.45s ease;
}
.profile:hover .profile-photo { transform: scale(1.04); }
.profile-info { padding: 1.2rem 1.3rem 1.5rem; }
.profile-info h3 {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.3rem;
    margin: 0 0 0.3rem;
}
.profile-info h3 em { color: var(--accent-soft); }
.city {
    display: inline-block;
    color: var(--text-faint);
    font-family: var(--display);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
}
.profile-info p {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.craft {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 1.6rem;
}
.craft > .kicker, .craft > h2 { display: block; }
.craft > .kicker { text-align: center; }
.craft h2 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 auto 4rem;
    text-align: center;
}
.craft h2 em { color: var(--accent-soft); }
.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}
.craft article {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 2rem 1.6rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.craft article:hover { border-color: var(--accent-soft); transform: translateY(-3px); }
.craft-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-style: italic;
    color: var(--accent-soft);
    line-height: 1;
    margin-bottom: 1rem;
}
.craft article h3 {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.2rem;
    margin: 0 0 0.6rem;
}
.craft article p {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.55;
}

.gallery-eternal {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1.6rem;
}
.gallery-eternal > .kicker { text-align: center; display: block; }
.gallery-eternal h2 {
    font-family: var(--display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.05;
    text-align: center;
    margin: 0 auto 3.5rem;
    letter-spacing: -0.025em;
}
.gallery-eternal h2 em { color: var(--accent-soft); }
.gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.g-tile {
    display: block;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-card);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.g-tile:hover { border-color: var(--accent-soft); transform: translateY(-4px); }
.g-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-tile:hover img { transform: scale(1.04); }
.g-tall { aspect-ratio: 9 / 16; }
.g-wide { aspect-ratio: 16 / 9; }
@media (min-width: 720px) { .g-wide { grid-column: span 2; } }

.pricing { max-width: 1280px; margin: 0 auto; padding: 6rem 1.6rem; }
.pricing > .kicker { text-align: center; display: block; }
.pricing h2 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    text-align: center;
    margin: 0 auto 3.5rem;
    letter-spacing: -0.025em;
}
.pricing h2 em { color: var(--accent-soft); }
.prices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
    align-items: stretch;
}
.pcard {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 2.2rem 1.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pcard h3 {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.4rem;
    margin: 0 0 1rem;
}
.pamt {
    margin-bottom: 1.6rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}
.pamt span {
    font-family: var(--serif);
    font-size: 3rem;
    font-style: italic;
    color: var(--accent-soft);
}
.pamt small { color: var(--text-faint); font-size: 0.9rem; }
.pcard ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    color: var(--text-soft);
    font-size: 0.95rem;
    flex-grow: 1;
}
.pcard li {
    padding: 0.55rem 0;
    border-bottom: 1px dashed var(--line);
}
.pcard li:last-child { border-bottom: none; }
.pcard li::before {
    content: "⊹";
    color: var(--accent-soft);
    margin-right: 0.6rem;
}
.pcard-best {
    background: linear-gradient(180deg, rgba(236, 0, 63, 0.08), var(--bg-card));
    border-color: var(--accent-soft);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(236, 0, 63, 0.15);
}
.best-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text);
    padding: 0.35rem 1rem;
    border-radius: var(--r-pill);
    font-family: var(--display);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    box-shadow: 0 6px 18px rgba(236, 0, 63, 0.4);
}

.faq { max-width: 820px; margin: 0 auto; padding: 6rem 1.6rem; }
.faq > .kicker { text-align: center; display: block; }
.faq h2 {
    font-family: var(--display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.05;
    text-align: center;
    margin: 0 auto 3rem;
    letter-spacing: -0.025em;
}
.faq h2 em { color: var(--accent-soft); }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.faq-list details {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    transition: border-color 0.2s ease;
}
.faq-list details[open] { border-color: var(--accent-soft); }
.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.4rem;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent-soft);
    line-height: 1;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    font-weight: 300;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p {
    margin: 0;
    padding: 0 1.4rem 1.4rem;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

.closing {
    text-align: center;
    padding: 7rem 1.6rem 8rem;
}
.closing h2 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 2.4rem;
    letter-spacing: -0.025em;
}
.closing h2 em { color: var(--accent-soft); }

.foot {
    background: #0a0706;
    padding: 3rem 1.6rem 2rem;
    border-top: 1px solid var(--line);
    text-align: center;
}
.foot-inner { max-width: 1280px; margin: 0 auto; }
.foot .brand { display: inline-block; font-size: 1.5rem; }
.foot p {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin: 0.6rem auto 1.4rem;
    max-width: 460px;
}
.foot-links {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    margin-bottom: 1.4rem;
    color: var(--text-faint);
    font-family: var(--display);
    font-size: 0.9rem;
}
.foot-links a { transition: color 0.2s ease; }
.foot-links a:hover { color: var(--accent-soft); }
.foot-copy { color: var(--text-faint); font-size: 0.78rem; margin: 0; line-height: 1.6; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 880px) {
    .hero { grid-template-columns: 1fr; }
    .nav-mid { display: none; }
    .pcard-best { transform: none; }
}
