:root {
    --cream: #f7f5ea;
    --ink: #171413;
    --muted: #6b625d;
    --line: #33302d;
    --pink: #f19ac8;
    --pink-deep: #e67db4;
    --green: #d6e4c8;
    --white: #fffdf7;
    --shadow: 0 18px 48px rgba(23, 20, 19, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 22px;
    background: rgba(247, 245, 234, 0.95);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.brand {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-decoration: none;
}

.brand span {
    color: var(--pink-deep);
    font-style: italic;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.site-nav a {
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
    border-color: var(--ink);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 26px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--pink);
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
    transition: transform 180ms ease, background 180ms ease;
}

.nav-cta {
    min-height: 34px;
    padding: 0 18px;
}

.button:hover,
.nav-cta:hover {
    background: var(--green);
    transform: translateY(-1px);
}

.button.primary {
    background: var(--pink);
}

.button.small {
    min-height: 34px;
    padding: 0 20px;
    font-size: 0.78rem;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--pink);
    padding: 8px 16px;
    font-weight: 800;
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border-bottom: 1px solid var(--line);
}

.bordered-panel {
    min-width: 0;
    border-right: 1px solid var(--line);
}

.hero-media,
.hero-copy {
    min-height: 620px;
    display: grid;
    place-items: center;
    padding: clamp(30px, 7vw, 86px);
}

.hero-media {
    padding: clamp(20px, 4vw, 48px);
    overflow: hidden;
}

.hero-copy {
    place-items: center start;
    border-right: 0;
}

.sticker {
    display: inline-block;
    margin: 0 0 8px;
    padding: 8px 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--pink);
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    transform: rotate(-8deg);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    line-height: 0.92;
}

h1 {
    max-width: 720px;
    font-size: clamp(4rem, 9vw, 8.6rem);
}

h1 em,
h2 em,
h3 em {
    color: var(--pink-deep);
    font-style: italic;
}

.lead {
    max-width: 580px;
    margin: 28px 0 30px;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.text-link {
    font-weight: 900;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

@keyframes phoneFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes glowFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.phone-mock {
    position: relative;
    animation: phoneFadeIn 1.4s ease-out both;
    animation-delay: 0.2s;
}

.phone-mock::before {
    content: "";
    position: absolute;
    inset: -15% -20% -10% -20%;
    background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.55) 0%, rgba(220, 38, 38, 0.35) 25%, rgba(185, 28, 28, 0.15) 50%, rgba(0, 0, 0, 0) 75%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0;
    animation: glowFadeIn 2s ease-out forwards;
    animation-delay: 0.6s;
    pointer-events: none;
}

.phone-mock-original-placeholder {
    width: min(480px, 92%);
    transform: rotate(-2deg);
    filter: drop-shadow(0 28px 52px rgba(23, 20, 19, 0.22));
}

.phone-top {
    width: 86px;
    height: 8px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: #4c4741;
}

.mock-hero {
    height: 210px;
    border: 1px solid #645d55;
    border-radius: 24px;
    background: radial-gradient(circle at 35% 35%, #ffdca8 0 8%, transparent 9%),
    radial-gradient(circle at 58% 45%, #c95233 0 10%, transparent 11%),
    radial-gradient(circle at 48% 62%, #7f391d 0 12%, transparent 13%),
    linear-gradient(135deg, #f2c17b, #5e2518 70%);
}

.mock-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 14px 12px;
    border-radius: 14px;
    background: var(--cream);
    font-weight: 800;
}

.mock-button {
    width: 100%;
    margin-top: 14px;
    border: 0;
    border-radius: 999px;
    background: var(--pink);
    padding: 14px;
    font-weight: 900;
}

.ticker {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--pink);
    white-space: nowrap;
}

.ticker div {
    display: inline-flex;
    min-width: max-content;
    animation: marquee 30s linear infinite;
}

.ticker span {
    display: inline-flex;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 1.32rem;
}

.ticker span::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 20px;
    border-radius: 50%;
    background: var(--ink);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.intro {
    grid-template-columns: 1.2fr 0.8fr;
}

.statement,
.blush-card {
    padding: clamp(36px, 7vw, 92px);
}

.statement h2,
.page-hero h1,
.contact-hero h1 {
    font-size: clamp(3.3rem, 7vw, 7rem);
    max-width: 820px;
}

.statement p,
.blush-card p,
.price-card p,
.comparison-board p,
.urgent-row p,
.contact-hero p,
.brief-form p,
.embed-card p {
    color: #0f0f0f;
    line-height: 1.65;
}

.blush-card {
    background: radial-gradient(circle at 20% 15%, rgba(241, 154, 200, 0.72), transparent 34%),
    var(--cream);
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blush-card h3,
.fit-list h3,
.embed-card h2,
.brief-form h2 {
    font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.service-board {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    border-bottom: 1px solid var(--line);
}

.photo-block {
    min-height: 540px;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: end;
    padding: 36px;
}

.menu-photo {
    padding: 0;
    overflow: hidden;
}

.photo-block div {
    max-width: 310px;
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--cream);
    background-color: rgba(241, 213, 213, 0.34);
    border-radius: 15px;
}

.photo-block span {
    display: block;
    font-family: "Instrument Serif", Georgia, serif;
    color: var(--pink-deep);
    font-size: 2rem;
    font-style: italic;
}

.photo-block strong {
    display: block;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 0.9;
}

.services-list article {
    min-height: 180px;
    padding: 44px clamp(28px, 6vw, 70px);
    border-bottom: 1px solid var(--line);
}

.services-list article:last-child {
    border-bottom: 0;
}

.services-list h3 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.services-list p {
    max-width: 620px;
    color: var(--muted);
    line-height: 1.65;
}

.services-list a {
    display: inline-flex;
    margin-left: auto;
    font-size: 0.78rem;
    font-weight: 900;
}

.press-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    min-height: 96px;
    border-bottom: 1px solid var(--line);
    background: var(--pink);
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.55rem);
    font-weight: 900;
}

.recent-work {
    position: relative;
    padding: clamp(54px, 9vw, 118px) clamp(22px, 10vw, 150px);
    border-bottom: 1px solid var(--line);
}

.work-heading {
    max-width: 640px;
}

.work-heading h2 {
    font-size: clamp(4rem, 10vw, 9rem);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 44px;
}

.work-card {
    min-height: 250px;
    padding: 24px;
    border: 1px solid var(--line);
    background: radial-gradient(circle at 72% 22%, rgba(241, 154, 200, 0.78), transparent 22%),
    var(--white);
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease;
}

.work-card:hover {
    transform: rotate(-1deg) translateY(-4px);
    background: radial-gradient(circle at 72% 22%, rgba(214, 228, 200, 0.95), transparent 22%),
    var(--white);
}

.work-card span {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.work-card strong {
    display: block;
    margin: 34px 0 16px;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 0.9;
}

.work-card small {
    color: var(--muted);
    line-height: 1.5;
}

.work-note {
    margin-top: 22px;
    color: var(--muted);
    font-size: 0.9rem;
}

.about-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
}

.founder-card,
.fit-list {
    padding: clamp(36px, 7vw, 88px);
}

.founder-card h2 {
    font-size: clamp(3rem, 6vw, 6rem);
}

.fit-list {
    border-right: 0;
}

.fit-list ul,
.price-card ul,
.comparison-board ul,
.contact-note ul {
    padding-left: 18px;
    line-height: 1.8;
}

.testimonial-wrap {
    position: relative;
    min-height: 430px;
    padding: 110px 18px 70px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.skew-strip {
    position: absolute;
    left: -40px;
    width: calc(100% + 80px);
    border: 1px solid var(--line);
    background: var(--pink);
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(1.7rem, 4vw, 3.4rem);
    white-space: nowrap;
}

.strip-one {
    top: 34px;
    transform: rotate(6deg);
}

.strip-two {
    top: 76px;
    transform: rotate(-3deg);
}

blockquote {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(34px, 6vw, 70px);
    border: 1px solid var(--line);
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

blockquote p {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

blockquote cite {
    color: var(--muted);
    font-style: normal;
}

.site-footer {
    background: var(--pink);
    text-align: center;
    border-top: 1px solid var(--line);
}

.site-footer nav {
    display: flex;
    justify-content: center;
    gap: clamp(28px, 8vw, 90px);
    padding: 22px;
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0;
    padding: 24px;
    background: var(--cream);
    font-size: 0.72rem;
}

.page-hero,
.contact-hero {
    padding: clamp(58px, 10vw, 120px) clamp(24px, 10vw, 145px);
    border-bottom: 1px solid var(--line);
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
}

.price-card {
    padding: clamp(36px, 6vw, 78px);
    border-right: 1px solid var(--line);
    background: var(--cream);
}

.price-card:last-child {
    border-right: 0;
}

.price-card.featured {
    background: radial-gradient(circle at 16% 14%, rgba(241, 154, 200, 0.72), transparent 26%),
    var(--cream);
}

.price-card h2 {
    font-size: clamp(3.1rem, 6vw, 6.5rem);
}

.price {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    color: var(--ink) !important;
    line-height: 1;
}

.price span {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
}

.comparison-board,
.urgent-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    padding: clamp(36px, 8vw, 96px);
    border-bottom: 1px solid var(--line);
}

.comparison-board h2,
.urgent-row h2 {
    font-size: clamp(3.2rem, 6vw, 6rem);
}

.urgent-row {
    grid-template-columns: 0.8fr 1fr auto;
    align-items: center;
    background: var(--pink);
}

.contact-hero {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 50px;
    align-items: end;
}

.contact-note {
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-note h2 {
    font-size: clamp(2.6rem, 4vw, 4.3rem);
}

.brief-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    border-bottom: 1px solid var(--line);
}

.brief-form,
.embed-card {
    padding: clamp(34px, 6vw, 78px);
}

.brief-form {
    border-right: 1px solid var(--line);
}

fieldset {
    margin: 26px 0;
    padding: 0;
    border: 0;
}

legend {
    margin-bottom: 12px;
    font-weight: 900;
}

label {
    display: block;
    margin-bottom: 14px;
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--cream);
    padding: 12px 14px;
    font: inherit;
}

input[type="radio"] {
    width: auto;
    margin-right: 10px;
    accent-color: var(--pink-deep);
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-fallback {
    margin-top: 18px;
    font-size: 0.9rem;
}

.embed-card {
    background: radial-gradient(circle at 70% 18%, rgba(241, 154, 200, 0.7), transparent 25%),
    var(--cream);
}

.is-sent {
    background: var(--green) !important;
}

@media (max-width: 900px) {
    .site-header {
        align-items: flex-start;
        padding: 12px 16px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 58px;
        right: 12px;
        left: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--line);
        background: var(--cream);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 13px 8px;
    }

    .split-section,
    .service-board,
    .about-band,
    .pricing-grid,
    .comparison-board,
    .urgent-row,
    .contact-hero,
    .brief-section {
        grid-template-columns: 1fr;
    }

    .bordered-panel,
    .photo-block,
    .price-card,
    .brief-form {
        border-right: 0;
    }

    .hero-media,
    .hero-copy {
        min-height: auto;
    }

    .hero-copy {
        border-top: 1px solid var(--line);
    }

    .press-strip,
    .work-grid {
        grid-template-columns: 1fr;
    }

    .press-strip span {
        padding: 18px;
        border-bottom: 1px solid rgba(23, 20, 19, 0.25);
    }

    .urgent-row {
        align-items: start;
    }
}

@media (max-width: 600px) {
    .site-header {
        min-height: 56px;
    }

    h1 {
        font-size: clamp(3.35rem, 19vw, 5rem);
    }

    .statement h2,
    .page-hero h1,
    .contact-hero h1,
    .work-heading h2 {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .hero-actions,
    .button,
    .nav-cta {
        width: 100%;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }

    .ticker span {
        min-height: 48px;
        font-size: 1.08rem;
    }

    .testimonial-wrap {
        min-height: 390px;
    }
}
