:root {
    --font-display: "Fraunces", Georgia, serif;
    --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-logo: "Caveat", cursive;

    --ink: #081a3d;
    --ink-soft: #26385f;
    --muted: #60708c;
    --paper: #fff6e8;
    --paper-soft: #fffaf0;
    --cream: #f7ead2;
    --sky: #13acd3;
    --ocean: #087ca7;
    --navy: #052f59;
    --mint: #62bf6b;
    --coral: #ef8c7d;
    --gold: #d9aa3d;
    --white: #ffffff;

    --paper-texture: url("../img/backgrounds/paper.webp");
    --blue-texture: url("../img/backgrounds/blue-fill.webp");
    --wave-top: url("../img/backgrounds/wave-top.webp");
    --wave-bottom: url("../img/backgrounds/wave-bottom.webp");
    --review-bg: url("../img/backgrounds/reviews.webp");

    --shadow-soft: 0 18px 45px rgba(8, 26, 61, 0.14);
    --shadow-card: 0 10px 24px rgba(8, 26, 61, 0.11);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-sans);
    line-height: 1.6;
    background-color: var(--paper);
    background-image: var(--paper-texture);
    background-repeat: repeat;
    background-size: 560px 560px;
}

body.modal-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

a {
    color: inherit;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: clamp(4rem, 7vw, 6rem) 0;
}

.paper-section {
    background-color: var(--paper);
    background-image: var(--paper-texture);
    background-repeat: repeat;
    background-size: 560px 560px;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.section-heading.align-left {
    margin-inline: 0;
    text-align: left;
}

.section-heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 4vw, 3.55rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.section-heading p {
    margin: 0.85rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.section-heading-light h2,
.section-heading-light p {
    color: var(--white);
}

.section-heading h2 span {
    display: block;
}

.how-intro-heading {
    max-width: 940px;
}

.eyebrow {
    margin: 0;
    color: var(--ocean);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.82rem 1.35rem;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(100deg, var(--sky), var(--mint));
    box-shadow: 0 14px 28px rgba(20, 184, 212, 0.22);
}

.button-secondary {
    color: var(--ink);
    background: rgba(255, 250, 240, 0.78);
    border: 1px solid rgba(8, 26, 61, 0.12);
}

.icon-button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(8, 26, 61, 0.1);
    border-radius: 50%;
    background: rgba(255, 250, 240, 0.92);
    box-shadow: 0 8px 20px rgba(8, 26, 61, 0.12);
    cursor: pointer;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 246, 232, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(8, 26, 61, 0.08);
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    color: var(--ink);
    text-decoration: none;
}

.brand-logo {
    width: 52px;
    height: auto;
    flex: 0 0 auto;
}

.brand-text,
.footer-brand {
    font-family: var(--font-logo);
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.nav-links a {
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
}

.nav-links a[aria-current="page"] {
    color: var(--ocean);
}

.nav-links .nav-cta {
    padding: 0.72rem 1.25rem;
    color: var(--white);
    border-radius: 999px;
    background: linear-gradient(100deg, var(--sky), var(--mint));
    box-shadow: 0 10px 24px rgba(20, 184, 212, 0.24);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(8, 26, 61, 0.12);
    border-radius: 50%;
    background: var(--paper-soft);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    min-height: calc(100svh - 72px);
    display: grid;
    align-items: center;
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
    background-color: var(--paper);
    background-image: var(--paper-texture);
    background-repeat: repeat;
    background-size: 560px 560px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.hero-copy h1 {
    max-width: 11.5ch;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 5.35rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-copy h1 span {
    display: block;
    white-space: nowrap;
}

.hero-copy p {
    max-width: 36rem;
    margin: 1.35rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.65rem;
}

.author-strip {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.author-stack {
    position: relative;
    width: 88px;
    height: 48px;
}

.author-stack span {
    position: absolute;
    top: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid var(--paper);
    color: var(--white);
    background: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
}

.author-stack span:nth-child(2) {
    left: 20px;
    background: var(--ocean);
}

.author-stack span:nth-child(3) {
    left: 40px;
    background: var(--coral);
}

.author-photo {
    position: absolute;
    top: 0;
    left: 40px;
    width: 48px;
    height: 48px;
    border: 2px solid var(--paper);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 14px rgba(8, 26, 61, 0.16);
}

.author-strip p {
    margin: 0;
    font-size: 0.94rem;
}

.author-strip div > span {
    color: var(--navy);
    font-family: var(--font-logo);
    font-size: 1.22rem;
    font-weight: 700;
}

.hero-media {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
}

.hero-media img {
    position: relative;
    z-index: 1;
    width: min(100%, 470px);
    margin-left: auto;
}

.wave {
    height: clamp(86px, 12vw, 220px);
    margin: -1px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.wave-top {
    background-color: var(--paper);
    background-image: var(--wave-top);
}

.wave-bottom {
    background-color: var(--paper);
    background-image: var(--wave-bottom);
}

.blue-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    color: var(--white);
    background-color: #0a91c4;
    background-image: var(--blue-texture);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.benefits-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
    gap: 1.7rem;
    align-items: stretch;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 252px;
    padding: 1.45rem 1.2rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.96);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.18s ease, background 0.18s ease;
}

.benefit-card:hover,
.benefit-card:focus-within {
    background: var(--white);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin: 0;
    flex: 0 0 auto;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    margin: 0.3rem 0 0.4rem;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.16rem;
    line-height: 1.15;
}

.sample-player h3 {
    margin: 0;
    line-height: 1.2;
}

.benefit-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.55;
}

.sample-player {
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: #06111f;
    box-shadow: 0 18px 45px rgba(4, 12, 25, 0.22);
}

.sample-player .eyebrow {
    color: rgba(255, 255, 255, 0.64);
}

.sample-current {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    margin-top: 0.75rem;
}

.sample-cover {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--white);
    background: linear-gradient(135deg, rgba(19, 172, 211, 0.45), rgba(239, 140, 125, 0.58));
    font-size: 2rem;
}

.sample-current h3 {
    color: var(--white);
    font-size: 1.05rem;
}

.sample-current p {
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.66);
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.sample-player .icon-button {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.play-button {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.play-button.is-playing {
    background: var(--mint);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
}

.process-image {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 100%;
}

.process-image picture {
    width: 100%;
    max-width: 500px;
    height: 100%;
    display: flex;
    justify-content: center;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    filter: drop-shadow(0 18px 28px rgba(8, 26, 61, 0.12));
}

.steps {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

.steps li {
    position: relative;
    padding: 1.1rem 1.1rem 1.1rem 4rem;
    border: 1px solid rgba(8, 26, 61, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.92);
    box-shadow: var(--shadow-card);
    counter-increment: step;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--ocean);
    font-weight: 800;
}

.steps h3,
.occasion-card h3,
.price-card h3 {
    margin: 0;
    line-height: 1.2;
}

.steps p,
.occasion-card p,
.price-card p {
    margin: 0.55rem 0 0;
    color: var(--ink-soft);
}

.occasion-card p {
    line-height: 1.5;
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.occasion-card {
    min-height: 150px;
    padding: 1rem;
    border: 1px solid rgba(8, 26, 61, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.93);
    box-shadow: var(--shadow-card);
}

.pricing-section {
    padding: clamp(4rem, 7vw, 6rem) 0 0;
    background-color: var(--paper);
    background-image: var(--paper-texture);
    background-repeat: repeat;
    background-size: 560px 560px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(290px, 0.95fr);
    gap: 1rem;
    align-items: stretch;
}

.price-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.4rem;
    border: 1px solid rgba(8, 26, 61, 0.1);
    border-top: 4px solid var(--sky);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.96);
    box-shadow: var(--shadow-card);
}

.price-card:nth-child(2) {
    border-top-color: var(--coral);
}

.price-card strong {
    margin-top: 0.55rem;
    color: var(--ocean);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
}

.price-card ul {
    display: grid;
    gap: 0.62rem;
    margin: 1.1rem 0 1.4rem;
    padding: 0;
    list-style: none;
}

.price-card li {
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 600;
}

.price-card li::before {
    content: "✓";
    margin-right: 0.45rem;
    color: var(--ocean);
    font-weight: 800;
}

.price-card .button {
    margin-top: auto;
}

.coming-soon-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: auto;
    padding: 0.52rem 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
}

.price-card-dark {
    color: var(--white);
    border-top-color: var(--mint);
    background: #06111f;
}

.price-card-dark p,
.price-card-dark li {
    color: rgba(255, 255, 255, 0.82);
}

.price-card-dark strong {
    color: #b8f6dc;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.compose-preview {
    display: grid;
    gap: 0.45rem;
    margin: 1.1rem 0 0.3rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.compose-preview span {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.compose-preview span:nth-child(2) {
    width: 78%;
}

.compose-preview span:nth-child(3) {
    width: 54%;
    background: rgba(98, 191, 107, 0.66);
}

.reviews-section {
    margin-top: clamp(3rem, 5vw, 4rem);
    min-height: max(540px, calc(100vw * 841 / 1870));
    padding: clamp(3.4rem, 5vw, 4.6rem) 0 clamp(3rem, 4.6vw, 4rem);
    overflow-x: hidden;
    background-color: var(--paper);
    background-image:
        linear-gradient(180deg, rgba(255, 246, 232, 0.18), rgba(255, 246, 232, 0.08)),
        var(--review-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto, auto 100%;
}

.review-grid {
    --review-gap: clamp(1rem, 2.2vw, 1.75rem);
    --review-card-width: calc((100% - var(--review-gap) - var(--review-gap)) / 3);
    display: flex;
    gap: var(--review-gap);
    margin: 0;
    padding: 0.15rem 0 1.1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.review-grid:focus-visible {
    outline: 3px solid rgba(19, 172, 211, 0.34);
    outline-offset: 6px;
}

.review-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 var(--review-card-width);
    min-height: 318px;
    padding: clamp(1.55rem, 2.15vw, 2rem);
    overflow: hidden;
    border: 1px solid rgba(8, 26, 61, 0.06);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.94);
    box-shadow: 0 12px 30px rgba(8, 26, 61, 0.1);
    scroll-snap-align: start;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.review-card.is-active {
    border-color: rgba(8, 26, 61, 0.12);
    box-shadow: 0 16px 34px rgba(8, 26, 61, 0.13);
}

.review-card p {
    max-width: none;
    margin: 0 0 2rem;
    color: var(--navy);
    font-size: clamp(1rem, 1.18vw, 1.12rem);
    font-weight: 500;
    line-height: 1.62;
}

.review-person {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    color: var(--muted);
}

.review-icon,
.review-photo {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 50%;
}

.review-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--navy);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.75);
    font-family: var(--font-logo);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
}

.review-photo {
    display: block;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 22px rgba(22, 34, 59, 0.14);
}

.review-person strong,
.review-person small {
    display: block;
}

.review-person strong {
    color: var(--navy);
}

.review-person small {
    margin-top: 0.18rem;
    color: rgba(8, 26, 61, 0.62);
    font-size: 0.88rem;
    line-height: 1.35;
}

.review-note {
    width: min(760px, 100%);
    margin: 1.15rem auto 0;
    color: rgba(8, 26, 61, 0.72);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.review-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    margin-top: 1.1rem;
}

.review-dots {
    display: flex;
    gap: 0.55rem;
}

.review-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(13, 126, 164, 0.18);
    cursor: pointer;
}

.review-dots button.is-active {
    background: #19b6bd;
    transform: scale(1.2);
}

.icon-button:disabled {
    opacity: 0.38;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.faq-wrap {
    max-width: 880px;
}

.faq-list {
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    border: 1px solid rgba(8, 26, 61, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.94);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
    text-align: left;
}

.faq-item button span {
    font-size: 1.5rem;
    line-height: 1;
}

.faq-item > div {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s ease;
}

.faq-item.is-open > div {
    grid-template-rows: 1fr;
}

.faq-item p {
    min-height: 0;
    margin: 0;
    padding: 0 1.15rem;
    overflow: hidden;
    color: var(--ink-soft);
}

.faq-item.is-open p {
    padding-bottom: 1.1rem;
}

.contact-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: linear-gradient(180deg, var(--paper), var(--white));
}

.contact-box {
    display: grid;
    justify-items: center;
    gap: 1rem;
    text-align: center;
}

.contact-box h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.contact-box p {
    max-width: 560px;
    margin: 0;
    color: var(--ink-soft);
}

.order-paper-spacer {
    height: clamp(42px, 7vw, 86px);
}

.order-form-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.order-form-title {
    margin: 0 0 clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.order-form-shell {
    padding: clamp(1rem, 2.2vw, 1.35rem);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.96);
    box-shadow: 0 22px 55px rgba(4, 12, 25, 0.24);
}

.order-form-shell [data-SimpleShopForm] > * {
    padding: 1rem;
    border: 1px solid rgba(8, 26, 61, 0.08);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(8, 26, 61, 0.08);
}

.order-form-shell [data-SimpleShopForm] a {
    color: var(--ocean);
    font-weight: 800;
}

.about-page-hero {
    padding: clamp(4.4rem, 7vw, 6.4rem) 0 clamp(3.2rem, 5vw, 4.6rem);
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.78fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-hero-copy h1 {
    max-width: 11ch;
    margin: 0.25rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(3.1rem, 6.7vw, 5.15rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.about-hero-copy > p:not(.eyebrow) {
    max-width: 42rem;
    margin: 1.2rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
}

.about-hero-visual {
    position: relative;
    min-height: 460px;
    display: grid;
    align-items: center;
    justify-items: center;
}

.about-hero-visual::before {
    content: "";
    position: absolute;
    inset: 16% 8% 12%;
    background: rgba(19, 172, 211, 0.14);
    border-radius: 48% 52% 44% 56% / 45% 46% 54% 55%;
}

.about-mascot-image {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    filter: drop-shadow(0 18px 28px rgba(8, 26, 61, 0.12));
}

.story-photo-placeholder {
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    font-weight: 800;
}

.creative-ai-cards article,
.customer-story-card {
    border: 1px solid rgba(8, 26, 61, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.94);
    box-shadow: var(--shadow-card);
}

.creative-ai-cards h3,
.customer-story-card h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    line-height: 1.15;
}

.creative-ai-cards p,
.customer-story-card p {
    margin: 0.55rem 0 0;
    color: var(--ink-soft);
}

.founder-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.founder-photo-card {
    display: grid;
    justify-items: center;
    gap: 0.65rem;
    text-align: center;
}

.founder-photo {
    width: min(100%, 380px);
    filter: drop-shadow(0 18px 28px rgba(4, 12, 25, 0.18));
}

.founder-photo-card p {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-logo);
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 700;
    line-height: 1;
}

.founder-copy h2,
.creative-ai-grid h2 {
    margin: 0.35rem 0 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 4vw, 3.35rem);
    line-height: 1.08;
}

.founder-copy p {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.88);
}

.founder-copy .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.3rem;
}

.founder-tags span {
    padding: 0.45rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.86rem;
    font-weight: 800;
}

.creative-ai-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.creative-ai-grid h2 {
    color: var(--ink);
}

.creative-ai-grid > div:first-child p:not(.eyebrow) {
    margin: 1rem 0 0;
    color: var(--ink-soft);
}

.creative-ai-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.creative-ai-cards article {
    min-height: 190px;
    padding: 1.15rem;
}

.customer-story-section {
    padding-top: 0;
}

.customer-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.customer-story-card {
    padding: 1.15rem;
}

.story-photo-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(19, 172, 211, 0.28), rgba(239, 140, 125, 0.34)),
        var(--paper-texture);
}

.how-page-hero {
    padding: clamp(4.4rem, 7vw, 6.4rem) 0 clamp(3.2rem, 5vw, 4.6rem);
    overflow: hidden;
}

.how-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.how-hero-copy h1 {
    max-width: 11ch;
    margin: 0.25rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(3.1rem, 6.7vw, 5.15rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.how-hero-copy > p:not(.eyebrow) {
    max-width: 42rem;
    margin: 1.2rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
}

.how-hero-panel {
    position: relative;
    padding: clamp(1.25rem, 2.6vw, 1.75rem);
    overflow: hidden;
    border: 1px solid rgba(8, 26, 61, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.9);
    box-shadow: var(--shadow-card);
}

.how-hero-panel::before {
    content: "";
    position: absolute;
    inset: 12% 8% auto auto;
    width: 180px;
    height: 180px;
    background: rgba(19, 172, 211, 0.13);
    border-radius: 50%;
}

.how-hero-panel > * {
    position: relative;
}

.how-quick-list {
    display: grid;
    gap: 0.75rem;
    margin: 1.2rem 0;
    padding: 0;
    list-style: none;
}

.how-quick-list li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    color: var(--ink);
    font-weight: 800;
}

.how-quick-list span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--ocean);
    font-size: 0.9rem;
}

.how-hero-panel > p:last-child {
    position: relative;
    margin: 0;
    color: var(--ink-soft);
}

.how-process-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.how-process-list {
    display: grid;
    gap: 1rem;
}

.how-process-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: clamp(1rem, 2.2vw, 1.5rem);
    align-items: center;
    padding: clamp(1.15rem, 2vw, 1.45rem);
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.96);
    box-shadow: var(--shadow-card);
}

.how-process-copy span {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--ocean);
    font-size: 0.82rem;
    font-weight: 800;
}

.how-process-copy h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.5vw, 2.05rem);
    line-height: 1.14;
}

.how-process-copy p {
    margin: 0.65rem 0 0;
    color: var(--ink-soft);
}

.how-process-card img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: contain;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.62);
}

.assignment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.assignment-card {
    min-height: 250px;
    padding: clamp(1.2rem, 2vw, 1.45rem);
    border: 1px solid rgba(8, 26, 61, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.94);
    box-shadow: var(--shadow-card);
}

.assignment-card p:not(.eyebrow) {
    margin: 0.8rem 0 0;
    color: var(--navy);
    font-size: clamp(1rem, 1.16vw, 1.08rem);
    font-style: italic;
    line-height: 1.65;
}

.guarantee-hero {
    padding: clamp(4.4rem, 7vw, 6.4rem) 0 clamp(3.2rem, 5vw, 4.6rem);
    overflow: hidden;
}

.guarantee-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.guarantee-hero-copy h1 {
    max-width: 12ch;
    margin: 0.25rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(3.1rem, 6.7vw, 5.15rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.guarantee-hero-copy > p:not(.eyebrow) {
    max-width: 45rem;
    margin: 1.05rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.04rem, 1.45vw, 1.16rem);
}

.guarantee-hero-visual {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 1rem;
    min-height: 390px;
    padding: 0;
    text-align: center;
}

.guarantee-hero-visual::before {
    content: "";
    position: absolute;
    inset: 12% 9% 24%;
    background: rgba(98, 191, 107, 0.16);
    border-radius: 47% 53% 44% 56% / 45% 46% 54% 55%;
}

.guarantee-hero-visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 280px);
    margin: auto 0 0;
    filter: drop-shadow(0 18px 28px rgba(8, 26, 61, 0.12));
}

.guarantee-hero-visual p {
    position: relative;
    z-index: 1;
    max-width: 17rem;
    margin: 0;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.1;
}

.guarantee-process-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.guarantee-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.guarantee-steps article,
.guarantee-detail-list article {
    padding: clamp(1.2rem, 2vw, 1.45rem);
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.96);
    box-shadow: var(--shadow-card);
}

.guarantee-steps span {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--ocean);
    font-size: 0.82rem;
    font-weight: 800;
}

.guarantee-steps h3,
.guarantee-detail-list h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.78rem);
    line-height: 1.15;
}

.guarantee-steps p {
    margin: 0.65rem 0 0;
    color: var(--ink-soft);
}

.guarantee-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(1.8rem, 4vw, 3rem);
    align-items: start;
}

.guarantee-detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.guarantee-detail-list article {
    border-color: rgba(8, 26, 61, 0.1);
}

.guarantee-detail-list ul {
    display: grid;
    gap: 0.55rem;
    margin: 0.85rem 0 0;
    padding-left: 1.15rem;
    color: var(--ink-soft);
}

.guarantee-faq-section {
    padding-top: 0;
}

.contact-page-hero {
    padding: clamp(4.4rem, 7vw, 6.4rem) 0 clamp(2.4rem, 4vw, 3.6rem);
    overflow: hidden;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-hero-copy h1 {
    max-width: 9ch;
    margin: 0.25rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 5.35rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.contact-hero-copy > p:not(.eyebrow) {
    max-width: 39rem;
    margin: 1.2rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
}

.contact-portrait {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: center;
    margin-top: clamp(7rem, 12vw, 9.4rem);
    padding: 0;
    overflow: visible;
    text-align: center;
}

.contact-portrait::before {
    content: "";
    position: absolute;
    inset: 13% 4% 18%;
    z-index: 0;
    background: rgba(19, 172, 211, 0.13);
    border-radius: 48% 52% 44% 56% / 46% 44% 56% 54%;
}

.contact-portrait-visual {
    position: relative;
    z-index: 1;
    width: min(100%, 390px);
    display: grid;
    place-items: center;
}

.contact-founder-photo {
    width: min(100%, 340px);
    filter: drop-shadow(0 18px 28px rgba(8, 26, 61, 0.12));
}

.contact-bard-image {
    position: absolute;
    right: 0;
    bottom: 0.25rem;
    z-index: 2;
    width: clamp(104px, 34%, 150px);
    filter: drop-shadow(0 12px 18px rgba(8, 26, 61, 0.14));
}

.contact-portrait p {
    position: relative;
    z-index: 2;
    margin: 0.75rem 0 0;
    color: var(--navy);
    font-family: var(--font-logo);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 700;
    line-height: 1;
}

.contact-detail-panel {
    display: grid;
    gap: 0.8rem;
    max-width: 680px;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(0.9rem, 1.8vw, 1.1rem);
    border: 1px solid rgba(8, 26, 61, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.9);
    box-shadow: var(--shadow-card);
}

.contact-detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.contact-detail-item {
    display: grid;
    gap: 0.2rem;
    min-height: 78px;
    padding: 0.82rem 0.95rem;
    border: 1px solid rgba(8, 26, 61, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.46);
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease;
}

.contact-detail-item:hover,
.contact-detail-item:focus-visible {
    background: rgba(255, 255, 255, 0.68);
    transform: translateY(-2px);
}

.contact-detail-item span,
.contact-invoice-compact span {
    color: var(--ocean);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-detail-item strong {
    color: var(--ink);
    font-size: clamp(1.02rem, 1.55vw, 1.22rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.contact-phone-note {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.5;
}

.contact-invoice-compact {
    display: grid;
    gap: 0.28rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(8, 26, 61, 0.08);
}

.contact-invoice-compact p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.5;
}

.contact-invoice-compact strong {
    color: var(--ink);
}

.contact-footer-wave {
    margin-bottom: -1px;
}

.site-footer {
    padding: 2.5rem 0;
    color: rgba(255, 255, 255, 0.84);
    background: #061a35;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(180px, auto) minmax(220px, auto);
    align-items: start;
    gap: 1.5rem;
}

.footer-brand {
    color: var(--white);
}

.footer-brand-row {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
}

.footer-logo {
    width: 52px;
    height: auto;
    flex: 0 0 auto;
}

.site-footer p {
    margin: 0.35rem 0 0;
}

.site-footer a {
    display: block;
    text-align: right;
    text-decoration: none;
}

.footer-links {
    display: grid;
    gap: 0.15rem;
}

.footer-payment {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-payment img {
    width: min(100%, 430px);
    height: auto;
}

.legal-page {
    min-height: 70vh;
}

.legal-section {
    padding: clamp(3.5rem, 7vw, 5.8rem) 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(1.15rem, 3vw, 2.25rem);
    border: 1px solid rgba(8, 26, 61, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.92);
    box-shadow: var(--shadow-card);
    overflow-wrap: break-word;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    color: var(--ink);
}

.legal-content h1 {
    margin: 0 0 1.4rem;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.legal-content h2 {
    margin: 2.1rem 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.16;
    letter-spacing: 0;
}

.legal-content h3 {
    margin: 1.8rem 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.2;
}

.legal-content h4 {
    margin: 1.3rem 0 0.5rem;
    font-size: 1rem;
}

.legal-content p,
.legal-content li,
.legal-content address {
    color: var(--ink-soft);
}

.legal-content a {
    color: var(--ocean);
    font-weight: 800;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.35rem;
}

.legal-content li + li {
    margin-top: 0.35rem;
}

.legal-info-box {
    margin: 0 0 1.6rem;
    padding: 1rem;
    border: 1px solid rgba(8, 26, 61, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.55);
}

.legal-stamp,
.legal-muted {
    color: var(--muted);
}

.legal-separator {
    height: 1px;
    margin: 1.8rem 0 1rem;
    background: rgba(8, 26, 61, 0.12);
}

.video-modal[hidden] {
    display: none;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.video-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(5, 17, 31, 0.68);
}

.video-dialog {
    position: relative;
    width: min(920px, 100%);
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    background: #06111f;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.video-close {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
}

.video-frame {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.74);
}

.video-frame iframe,
.video-frame video {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 0.9rem;
    }

    .benefits-layout {
        grid-template-columns: minmax(0, 1fr) minmax(310px, 0.56fr);
    }

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

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

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

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

    .creative-ai-cards,
    .customer-story-grid,
    .guarantee-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-card-dark {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 0.75rem 1rem 1rem;
        background: rgba(255, 246, 232, 0.98);
        border-bottom: 1px solid rgba(8, 26, 61, 0.08);
        box-shadow: 0 18px 34px rgba(8, 26, 61, 0.12);
        transform: translateY(-120%);
        transition: transform 0.22s ease;
    }

    .nav-links.is-open {
        transform: translateY(0);
    }

    .nav-links a {
        padding: 0.8rem;
        text-align: center;
    }

    .nav-links .nav-cta {
        margin-top: 0.35rem;
    }

    .hero {
        min-height: 0;
    }

    .hero-grid,
    .benefits-layout,
    .split-layout,
    .about-hero-grid,
    .founder-grid,
    .creative-ai-grid,
    .how-hero-grid,
    .guarantee-hero-grid,
    .guarantee-detail-grid,
    .contact-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: clamp(2.75rem, 10vw, 4rem);
    }

    .hero-media {
        min-height: 440px;
    }

    .hero-media img {
        margin: 0 auto;
    }

    .sample-player {
        width: min(480px, 100%);
        margin: 0 auto;
    }

    .about-hero-visual {
        width: min(520px, 100%);
        min-height: 430px;
        margin: 0 auto;
    }

    .founder-photo-card {
        width: min(520px, 100%);
        margin: 0 auto;
    }

    .how-hero-panel {
        width: min(560px, 100%);
        margin: 0 auto;
    }

    .how-process-card {
        grid-template-columns: 1fr;
    }

    .how-process-card img {
        width: min(100%, 360px);
        margin: 0 auto;
    }

    .contact-portrait {
        width: min(520px, 100%);
        margin: 0 auto;
    }

    .guarantee-hero-visual {
        width: min(520px, 100%);
        min-height: 340px;
        margin: 0 auto;
    }

    .process-image {
        min-height: 0;
    }

    .process-image picture {
        width: min(100%, 520px);
        max-width: 520px;
        height: auto;
    }

    .process-image img {
        height: auto;
        margin: 0 auto;
    }

    .review-grid {
        --review-card-width: min(84vw, 460px);
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 1.5rem, var(--container));
    }

    .section {
        padding: 3.4rem 0;
    }

    .hero {
        padding-top: 2.4rem;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.1rem, 10.4vw, 2.75rem);
    }

    .order-form-section {
        padding: 3.2rem 0;
    }

    .about-hero-copy h1 {
        max-width: none;
        font-size: clamp(2.35rem, 11vw, 3.2rem);
    }

    .how-hero-copy h1 {
        max-width: none;
        font-size: clamp(2.35rem, 11vw, 3.2rem);
    }

    .hero-copy h1 span {
        white-space: normal;
    }

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

    .contact-page-hero {
        padding-top: 3.1rem;
    }

    .contact-hero-copy h1 {
        max-width: none;
        font-size: clamp(2.35rem, 11vw, 3.2rem);
    }

    .author-strip {
        align-items: flex-start;
    }

    .hero-media {
        min-height: 350px;
    }

    .wave {
        height: clamp(76px, 22vw, 120px);
    }

    .benefit-list,
    .occasion-grid,
    .pricing-grid,
    .creative-ai-cards,
    .customer-story-grid,
    .assignment-grid,
    .guarantee-steps,
    .guarantee-detail-list,
    .contact-detail-list {
        grid-template-columns: 1fr;
    }

    .about-hero-visual {
        min-height: 380px;
    }

    .assignment-card {
        min-height: 0;
    }

    .occasion-card {
        min-height: 0;
        padding: 0.9rem;
    }

    .occasion-card p {
        margin-top: 0.4rem;
    }

    .benefit-card {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        align-items: flex-start;
        min-height: 0;
        padding: 1rem;
        text-align: left;
    }

    .benefit-icon {
        width: 58px;
        height: 58px;
    }

    .benefit-card h3 {
        margin-top: 0;
        font-size: 1.08rem;
    }

    .price-card-dark {
        grid-column: auto;
    }

    .review-grid {
        --review-card-width: min(100%, 420px);
    }

    .review-card {
        min-height: 340px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-footer a {
        text-align: left;
    }

    .footer-payment {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
