/* ============================================================
   Greta Pudan — Advisory Brand
   Editorial minimal · DM Serif Display + DM Sans
   ============================================================ */

/* ---- Tokens ----------------------------------------------- */
:root {
    --bg: #f2efe9;
    --ink: #0e0d0b;
    --mid: #625c54;
    --faint: #a09488;
    --line: #d8d2c8;

    --dark: #0e0d0b;
    --dark-mid: rgba(242, 239, 233, 0.5);
    --dark-line: rgba(242, 239, 233, 0.1);

    --serif: "DM Serif Display", Georgia, serif;
    --sans: "DM Sans", -apple-system, sans-serif;

    --content: 780px;
    --wide: 1080px;
    --pad: clamp(1.5rem, 5.5vw, 5rem);
    --section: clamp(4.125rem, 6.75vw, 6.75rem);
}

/* ---- Reset ------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

/* ---- Type scale ------------------------------------------- */
.t-display {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 5.6vw, 5.6rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.t-hero {
    font-family: var(--serif);
    font-size: clamp(1.95rem, 4.1vw, 3.9rem);
    font-weight: 400;
    line-height: 1.07;
    letter-spacing: -0.015em;
    color: var(--ink);
}

.t-xl {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.6vw, 2.55rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.t-lg {
    font-family: var(--serif);
    font-size: clamp(1.125rem, 1.85vw, 1.575rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--ink);
}

.t-label {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
}

.t-label::before {
    content: "";
    display: block;
    width: 1.75rem;
    height: 1.5px;
    background: var(--ink);
    margin-bottom: 0.85rem;
}

p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--ink);
    max-width: 58ch;
}

p + p {
    margin-top: 1.5em;
}

strong {
    font-weight: 500;
    color: var(--ink);
}

/* ---- Layout ----------------------------------------------- */
.container {
    max-width: var(--wide);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.prose {
    max-width: var(--content);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.prose > * + * {
    margin-top: 1.25em;
}
.prose > .t-label + * {
    margin-top: 0.5em;
}

.section {
    padding: var(--section) 0;
    border-top: 1px solid var(--line);
}

.section:first-of-type {
    border-top: none;
}

/* ---- Navigation ------------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 var(--pad);
}

.nav-inner {
    max-width: var(--wide);
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.nav-growify {
    font-size: 1.35em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--mid);
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--ink);
}
.nav-links a.active {
    color: var(--ink);
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 1px;
}

@media (max-width: 580px) {
    .nav-links {
        gap: 1.5rem;
    }
    .nav-links a {
        font-size: 0.75rem;
    }
}

/* ---- Hero -------------------------------------------------- */
.hero {
    padding: var(--section) var(--pad);
    max-width: var(--wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: end;
    border-bottom: 1px solid var(--line);
    min-height: calc(100svh - 64px);
}

.hero-text {
    padding-bottom: 2rem;
}

.hero-headline {
    margin: 1.5rem 0 1.75rem;
}

.hero-sub {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--ink);
    max-width: 48ch;
    margin-bottom: 2.25rem;
}

.hero-img {
    align-self: end;
}

.hero-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(18%) contrast(1.02);
}

.hero-img figcaption {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--faint);
    margin-top: 0.6rem;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 2.5rem;
        padding-top: clamp(2.5rem, 5vw, 4rem);
    }
    .hero-img {
        order: -1;
    }
    .hero-img img {
        height: 340px;
    }
}

/* ---- Links ------------------------------------------------- */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.link-arrow:hover {
    opacity: 0.5;
}

.btn-dark {
    display: inline-block;
    background: var(--ink);
    color: var(--bg);
    padding: 1rem 2.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid var(--ink);
    border-radius: 200px;
    transition:
        background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
    background: transparent;
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.btn-light:hover {
    opacity: 0.6;
}

/* ---- Dark quote band --------------------------------------- */
.dark-band {
    background: var(--dark);
    padding: clamp(5rem, 9vw, 9rem) var(--pad);
}

.dark-band blockquote {
    max-width: 840px;
    margin: 0 auto;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--bg);
    text-align: center;
}

.dark-band .quote-attr {
    display: block;
    margin-top: 1.75rem;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-mid);
    text-align: center;
}

.dark-band p {
    color: var(--dark-mid);
    max-width: none;
    text-align: center;
}

/* ---- Work list (homepage + services) ---------------------- */
.work-list {
    list-style: none;
}

.work-row {
    padding: 2.75rem 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 2rem;
    align-items: baseline;
}

.work-row:last-child {
    border-bottom: 1px solid var(--line);
}

.work-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--line);
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
}

.work-body h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.work-body p {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--ink);
    max-width: 52ch;
    line-height: 1.8;
}

.work-body .work-link {
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    transition:
        color 0.15s,
        border-color 0.15s;
}

.work-body .work-link:hover {
    color: var(--mid);
    border-color: var(--mid);
}

@media (max-width: 540px) {
    .work-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .work-num {
        font-size: 1.5rem;
    }
}

/* ---- Portfolio cells -------------------------------------- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2.5rem;
    border: 1px solid var(--line);
}

.p-cell {
    padding: 1.75rem;
    border-right: 1px solid var(--line);
    text-decoration: none;
    transition: background 0.15s;
}

.p-cell:last-child {
    border-right: none;
}
.p-cell:hover {
    background: rgba(14, 13, 11, 0.03);
}

.p-cell-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.p-cell-note {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--faint);
    line-height: 1.4;
    display: block;
    margin-bottom: 0.75rem;
}

.p-cell-desc {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.65;
    max-width: none;
}

@media (max-width: 780px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    .p-cell:nth-child(2) {
        border-right: none;
    }
    .p-cell:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .p-cell {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .p-cell:last-child {
        border-bottom: none;
    }
}

/* ---- Press list ------------------------------------------- */
.press-list {
    list-style: none;
    margin-top: 2rem;
}

.press-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    align-items: baseline;
}

.press-row:last-child {
    border-bottom: 1px solid var(--line);
}

.press-src {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--faint);
    padding-top: 0.15rem;
}

.press-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.7;
    max-width: none;
}

.press-title a {
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transition:
        color 0.15s,
        border-color 0.15s;
}

.press-title a:hover {
    color: var(--mid);
    border-color: var(--mid);
}

@media (max-width: 540px) {
    .press-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
}

/* ---- Services page ---------------------------------------- */
.svc-item {
    padding: 3rem 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3.5rem;
    align-items: start;
}

.svc-item:last-child {
    border-bottom: 1px solid var(--line);
}

.svc-meta {
    padding-top: 0.15rem;
}

.svc-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.svc-price {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--faint);
    display: block;
    letter-spacing: 0.03em;
}

.svc-body p {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--ink);
    max-width: 54ch;
    line-height: 1.8;
}

.svc-body p + p {
    margin-top: 1.25rem;
}

.svc-includes {
    list-style: none;
    margin-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.svc-includes li {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 0.75rem;
    line-height: 1.6;
}

.svc-includes li::before {
    content: "–";
    color: var(--faint);
    flex-shrink: 0;
}

.svc-note {
    margin-top: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--ink);
    background: rgba(14, 13, 11, 0.02);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    max-width: none;
    line-height: 1.75;
}

@media (max-width: 640px) {
    .svc-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ---- About page ------------------------------------------- */
.about-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.about-photos img {
    width: 100%;
    filter: grayscale(18%) contrast(1.02);
}

.about-photos .ph-tall {
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
}

.about-photos .ph-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-photos .ph-sq {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
}

@media (max-width: 580px) {
    .about-photos {
        grid-template-columns: 1fr;
    }
}

/* Narrative prose */
.narrative p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--ink);
    max-width: 58ch;
}

.narrative p strong {
    color: var(--ink);
    font-weight: 500;
}
.narrative p + p {
    margin-top: 1.75rem;
}

.narrative a {
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-weight: 500;
    transition:
        color 0.15s,
        border-color 0.15s;
}

.narrative a:hover {
    color: var(--mid);
    border-color: var(--mid);
}

/* Credentials */
.cred-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.75rem;
    font-size: 1rem;
}

.cred-table tr {
    border-top: 1px solid var(--line);
}

.cred-table tr:last-child {
    border-bottom: 1px solid var(--line);
}

.cred-table td {
    padding: 1rem 0 1rem 0;
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    vertical-align: top;
    line-height: 1.7;
}

.cred-table td:first-child {
    width: 180px;
    min-width: 140px;
    font-weight: 500;
    color: var(--mid);
    padding-right: 2rem;
    font-size: 0.9375rem;
}

.cred-table a {
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-weight: 500;
    transition:
        color 0.15s,
        border-color 0.15s;
}

.cred-table a:hover {
    color: var(--mid);
    border-color: var(--mid);
}

/* ---- Speaking page ---------------------------------------- */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--content);
    margin: 2rem auto;
    padding: 0 var(--pad);
}

.photo-strip img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top;
    filter: grayscale(20%);
    border-radius: 2px;
    display: block;
}

@media (max-width: 540px) {
    .photo-strip {
        grid-template-columns: 1fr;
    }
    .photo-strip img {
        height: 200px;
    }
}

.talk-item {
    padding: 2.25rem 0;
    border-top: 1px solid var(--line);
}

.talk-item:last-child {
    border-bottom: 1px solid var(--line);
}

.talk-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.talk-meta {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--faint);
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.talk-body p {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--ink);
    max-width: 56ch;
    line-height: 1.8;
}

.talk-body p + p {
    margin-top: 1rem;
}

/* Appearances table */
.app-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.75rem;
}

.app-table th {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--faint);
    text-align: left;
    padding: 0 1rem 0.85rem 0;
    border-bottom: 1px solid var(--ink);
}

.app-table td {
    padding: 1rem 1rem 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    vertical-align: top;
    line-height: 1.65;
}

.td-event {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
}

.td-event a {
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.td-event a:hover {
    opacity: 0.6;
}

/* ---- Gallery ---------------------------------------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: grayscale(18%);
    transition: filter 0.3s;
}

.gallery img:hover {
    filter: grayscale(0%);
}

@media (max-width: 580px) {
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---- Footer ----------------------------------------------- */
footer {
    border-top: 1px solid var(--line);
    padding: 2.5rem var(--pad);
}

.footer-inner {
    max-width: var(--wide);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--mid);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.02em;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--mid);
}

/* ---- Page header ------------------------------------------ */
.page-header {
    padding: clamp(3.5rem, 6vw, 6rem) var(--pad) clamp(3rem, 5vw, 5rem);
    border-bottom: 1px solid var(--line);
    max-width: var(--content);
    margin: 0 auto;
}

/* ---- Callout ---------------------------------------------- */
.callout {
    border-left: 3px solid var(--ink);
    padding: 1.25rem 1.5rem 1.25rem 1.5rem;
    margin: 2rem 0;
    background: rgba(14, 13, 11, 0.02);
}

.callout p {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--ink);
    max-width: none;
    line-height: 1.8;
    margin: 0;
}

.callout a {
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-weight: 500;
    transition:
        color 0.15s,
        border-color 0.15s;
}

.callout a:hover {
    color: var(--mid);
    border-color: var(--mid);
}

/* ---- Bold editorial additions ----------------------------- */

/* Jumbo hero headline */
.t-jumbo {
    font-family: var(--serif);
    font-size: clamp(3.8rem, 9.5vw, 9.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.t-jumbo em {
    font-style: italic;
    font-weight: 400;
}

/* Full-width text hero */
.hero-full {
    padding: clamp(5rem, 11vw, 12rem) var(--pad) clamp(4rem, 7vw, 7rem);
    border-bottom: 1px solid var(--line);
}

.hero-full-inner {
    max-width: var(--wide);
    margin: 0 auto;
}

/* Lead paragraph — larger than body */
.lead {
    font-size: clamp(0.8rem, 1.31vw, 1rem);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.8;
    max-width: 52ch;
}

/* Credential strip */
.cred-strip {
    border-bottom: 1px solid var(--line);
    padding: 1.25rem var(--pad);
    overflow: hidden;
}

.cred-strip-inner {
    max-width: var(--wide);
    margin: 0 auto;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Essay intro — large serif statement opener */
.essay-intro {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3.2vw, 3rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--ink);
    max-width: 36ch;
    letter-spacing: -0.01em;
}

/* Company list — editorial two-column grid */
.company-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    margin-top: 2rem;
}

.company-item {
    display: block;
    padding: 2rem 2rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: background 0.15s;
}

.company-item:nth-child(even) {
    border-right: none;
}
.company-item:nth-child(3),
.company-item:nth-child(4) {
    border-bottom: none;
}
.company-item:hover {
    background: rgba(14, 13, 11, 0.03);
}

.company-name {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 0.45rem;
    letter-spacing: -0.015em;
}

.company-note {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--mid);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .company-list {
        grid-template-columns: 1fr;
    }
    .company-item {
        border-right: none;
    }
    .company-item:nth-child(3),
    .company-item:nth-child(4) {
        border-bottom: 1px solid var(--line);
    }
    .company-item:last-child {
        border-bottom: none;
    }
}

/* ---- Point-of-view beliefs -------------------------------- */
.pov-list {
    margin-top: 2.5rem;
}

.pov-item {
    padding: 2.25rem 0;
    border-top: 1px solid var(--line);
}

.pov-item:last-child {
    border-bottom: 1px solid var(--line);
}

.pov-title {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    max-width: 42ch;
}

.pov-body {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.85;
    max-width: 62ch;
}

/* ---- Simplified work rows --------------------------------- */
.work-simple-item {
    padding: 2.25rem 0;
    border-top: 1px solid var(--line);
}

.work-simple-item:last-child {
    border-bottom: 1px solid var(--line);
}

.work-simple-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.65rem;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.work-simple-title {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.15;
}

.work-simple-price {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--mid);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.work-simple-item > p {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.8;
    max-width: 54ch;
    margin-bottom: 1rem;
}

.work-simple-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 2px;
    transition: opacity 0.15s;
}

.work-simple-link:hover {
    opacity: 0.5;
}

/* ---- Utility ---------------------------------------------- */
.mt-sm {
    margin-top: 1rem;
}
.mt-md {
    margin-top: 2rem;
}
.mt-lg {
    margin-top: 3rem;
}

.inline-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2rem;
}

/* Prose inline links (not in narrative) */
.prose p a:not(.btn-dark):not(.link-arrow) {
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-weight: 500;
    padding-bottom: 1px;
    transition:
        color 0.15s,
        border-color 0.15s;
}

.prose p a:hover {
    color: var(--mid);
    border-color: var(--mid);
}

/* ---- Form Styles ------------------------------------------ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 440px;
    margin: 0 auto 3rem auto;
    width: 100%;
    text-align: left;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-family: var(--sans);
    font-size: 1.05rem;
    background: transparent;
    color: var(--ink);
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--faint);
    font-weight: 300;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--ink);
}
.contact-form textarea {
    resize: vertical;
    min-height: 40px;
}
.contact-form button {
    align-self: center;
    width: 100%;
    margin-top: 1.5rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--sans);
}

/* ---- Floating Socials ------------------------------------ */
.floating-socials {
    position: fixed;
    right: 20px;
    bottom: 50%;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

.floating-social-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%) rotate(45deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

/* Premium Metallic WhatsApp */
.floating-social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), inset 0 2px 0 rgba(255,255,255,0.4), inset 0 -2px 0 rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.floating-social-btn.whatsapp i {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Premium Metallic LinkedIn */
.floating-social-btn.linkedin {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 50%, #002855 100%);
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3), inset 0 2px 0 rgba(255,255,255,0.4), inset 0 -2px 0 rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.floating-social-btn.linkedin i {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.floating-social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .floating-socials {
        right: 50%;
        bottom: 20px;
        transform: translateX(50%);
        flex-direction: row;
        gap: 20px;
    }
}
