:root {
    --ink: #171615;
    --muted: #68615b;
    --paper: #fbfaf7;
    --surface: #ffffff;
    --line: #e7e0d8;
    --wine: #7a3444;
    --moss: #53685a;
    --brass: #b3834a;
    --focus: #164fef;
    --shadow: 0 18px 48px rgba(23, 22, 21, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

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

a {
    color: inherit;
}

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

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    --range-progress: 0%;
}

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -4rem;
    left: 1rem;
    z-index: 100;
    padding: .75rem 1rem;
    background: var(--ink);
    color: #fff;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 76px;
    padding: 0 4vw;
    background: rgba(251, 250, 247, 0.92);
    border-bottom: 1px solid rgba(231, 224, 216, 0.8);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    font-weight: 700;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    background: var(--ink);
    border-radius: 50%;
    font-family: Georgia, serif;
}

.brand-logo {
    max-width: 132px;
    max-height: 42px;
    object-fit: contain;
}

.site-nav,
.header-actions,
.lang-switch {
    display: flex;
    align-items: center;
}

.site-nav {
    justify-content: center;
    gap: 1.35rem;
    font-size: .95rem;
}

.site-nav a,
.footer-links a,
.text-link {
    text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
    color: var(--wine);
}

.header-actions {
    gap: .8rem;
}

.lang-switch {
    gap: .2rem;
    border: 1px solid var(--line);
    padding: .16rem;
    background: #fff;
    border-radius: 999px;
}

.lang-switch a {
    min-width: 34px;
    padding: .35rem .55rem;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-size: .82rem;
    color: var(--muted);
}

.lang-switch a.active {
    background: var(--ink);
    color: #fff;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .78rem 1.15rem;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(23, 22, 21, 0.14);
}

.button.small {
    min-height: 38px;
    padding: .55rem .85rem;
    font-size: .9rem;
}

.button.light {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

.button:disabled {
    cursor: not-allowed;
    opacity: .55;
    transform: none;
    box-shadow: none;
}

.text-link {
    font-weight: 700;
    color: var(--wine);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

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

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 76px));
    display: grid;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(251, 250, 247, .96) 0%, rgba(251, 250, 247, .86) 35%, rgba(251, 250, 247, .18) 69%),
        url('/assets/img/ereoo-hero.png') center right / cover no-repeat;
}

.hero-inner {
    position: relative;
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 6rem 0 7rem;
}

.eyebrow,
.kicker,
.song-meta {
    margin: 0 0 .75rem;
    color: var(--wine);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    line-height: .98;
    font-weight: 500;
}

.hero-copy,
.page-hero p {
    max-width: 590px;
    margin: 1.35rem 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-top: 2.1rem;
    flex-wrap: wrap;
}

.reveal-section {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-flash-wrap {
    width: min(1120px, 92vw);
    margin: 1rem auto 0;
}

.site-flash {
    padding: .95rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.site-flash.success {
    border-color: rgba(83, 104, 90, .28);
    color: var(--moss);
}

.site-flash.error {
    border-color: rgba(122, 52, 68, .24);
    color: var(--wine);
}

.trust-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.trust-band div {
    padding: 1.15rem 4vw;
    border-right: 1px solid var(--line);
    font-weight: 700;
    color: var(--moss);
    text-align: center;
}

.section {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 6rem 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading h2,
.emotional-section h2,
.pricing-section h2,
.final-cta h2,
.article h1,
.article h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 4vw, 4.2rem);
    line-height: 1.05;
    font-weight: 500;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.step {
    min-height: 250px;
    padding: 1.45rem;
    background: #fff;
}

.step span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 2rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--wine);
    font-weight: 800;
}

.step h3,
.song-card h3,
.post-card h3 {
    margin: 0 0 .7rem;
    font-size: 1.15rem;
}

.step p,
.song-card p,
.post-card p,
.pricing-section p,
.emotional-section p,
.article-body,
.notice {
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 4rem;
    align-items: start;
}

.sticky-heading {
    position: sticky;
    top: 108px;
}

.occasion-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem;
}

.occasion-list div {
    padding: 1.2rem 1.25rem;
    border-top: 1px solid var(--line);
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, .4));
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.occasion-note {
    margin: 1.25rem 0 0;
    color: var(--muted);
    max-width: 700px;
}

.songs-section {
    width: min(1560px, 94vw);
}

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

.song-card,
.post-card,
.featured-post,
.price-panel,
.order-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.song-card {
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.song-card.featured {
    box-shadow: var(--shadow);
}

.song-cover {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: #ece8e0;
}

.song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, filter .35s ease;
}

.cover-fallback {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform .45s ease, filter .35s ease;
    background:
        radial-gradient(circle at 30% 30%, rgba(122, 52, 68, .22), transparent 28%),
        linear-gradient(135deg, #f8f5ef, #dce6de 48%, #f0e1de);
}

.song-cover-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.song-cover-button:disabled {
    cursor: not-allowed;
}

.song-body {
    padding: 1.25rem;
}

.player {
    display: grid;
    grid-template-columns: auto 1fr 74px;
    align-items: center;
    gap: .8rem;
    margin-top: 1.15rem;
}

.play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    min-height: 44px;
    padding: 0 .9rem;
    border: 0;
    border-radius: 999px;
    background: var(--wine);
    color: #fff;
    cursor: pointer;
}

.time-row {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: .75rem;
}

input[type="range"] {
    width: 100%;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--wine) 0%, var(--wine) var(--range-progress), #ddd7cf var(--range-progress), #ddd7cf 100%);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -5px;
    border: 0;
    border-radius: 50%;
    background: var(--wine);
    box-shadow: 0 0 0 3px rgba(122, 52, 68, .12);
}

input[type="range"]::-moz-range-track {
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: #ddd7cf;
}

input[type="range"]::-moz-range-progress {
    height: 8px;
    border-radius: 999px;
    background: var(--wine);
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: var(--wine);
    box-shadow: 0 0 0 3px rgba(122, 52, 68, .12);
}

.volume {
    min-width: 64px;
}

.song-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: .65rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(17, 16, 16, .04) 12%, rgba(17, 16, 16, .18) 46%, rgba(17, 16, 16, .74) 100%);
    color: #fff;
    opacity: 1;
    transition: opacity .35s ease, background .35s ease;
}

.song-overlay-meta {
    align-self: start;
    max-width: 85%;
    font-size: .74rem;
    line-height: 1.35;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255, 255, 255, .88);
}

.song-overlay-action {
    display: grid;
    place-items: center;
    align-self: center;
}

.song-toggle {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.song-toggle-icon {
    display: block;
}

.song-toggle-icon--play {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #fff;
}

.song-toggle-icon--pause {
    display: none;
    gap: 6px;
}

.song-toggle-icon--pause span {
    display: block;
    width: 6px;
    height: 24px;
    border-radius: 999px;
    background: #fff;
}

.song-overlay-title {
    align-self: end;
    max-width: 11ch;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 1.6vw, 1.8rem);
    line-height: 1.02;
    font-weight: 500;
}

.song-card.is-playing .song-toggle {
    background: rgba(122, 52, 68, .88);
    border-color: rgba(255, 255, 255, .7);
}

.song-card.is-playing .song-toggle-icon--play {
    display: none;
}

.song-card.is-playing .song-toggle-icon--pause {
    display: inline-flex;
}

.song-card.audio-error {
    box-shadow: 0 0 0 2px rgba(122, 52, 68, .16);
}

.song-cover-button:disabled .song-overlay {
    opacity: 1;
}

.song-cover-button:disabled .song-toggle {
    opacity: .45;
}

@media (hover: hover) {
    .song-card:not(.is-playing) .song-overlay {
        opacity: 0;
    }

    .song-cover-button:disabled .song-overlay {
        opacity: 1;
    }

    .song-card:hover,
    .song-card:focus-within {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

    .song-card:hover .song-overlay,
    .song-card:focus-within .song-overlay,
    .song-card.is-playing .song-overlay {
        opacity: 1;
        background: linear-gradient(180deg, rgba(17, 16, 16, .08) 8%, rgba(17, 16, 16, .24) 38%, rgba(17, 16, 16, .8) 100%);
    }

    .song-card:hover .song-cover img,
    .song-card:focus-within .song-cover img,
    .song-card.is-playing .song-cover img,
    .song-card:hover .cover-fallback,
    .song-card:focus-within .cover-fallback,
    .song-card.is-playing .cover-fallback {
        transform: scale(1.04);
        filter: brightness(.72);
    }

    .song-card:hover .song-toggle,
    .song-card:focus-within .song-toggle,
    .song-card.is-playing .song-toggle {
        transform: scale(1.05);
    }
}

.empty-state,
.notice {
    padding: 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.emotional-section,
.pricing-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.emotional-section p {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    line-height: 1.35;
}

.price-panel {
    padding: 2rem;
}

.price {
    margin: 0 0 .5rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--wine);
}

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

details {
    padding: 1.15rem 1.25rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

summary {
    cursor: pointer;
    font-weight: 800;
}

.final-cta {
    margin: 0;
    padding: 6rem 4vw;
    background: var(--ink);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1.5rem;
}

.site-footer {
    background: #fff;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 2rem;
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 3.5rem 0;
}

.footer-grid p {
    max-width: 360px;
    color: var(--muted);
}

.footer-links {
    display: grid;
    align-content: start;
    gap: .7rem;
}

.footer-links span {
    color: var(--muted);
}

.footer-links strong {
    font-size: .95rem;
}

.footer-powered {
    padding: 0 4vw 2.5rem;
    text-align: center;
    font-size: .98rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-powered a {
    color: var(--wine);
    text-decoration: none;
}

.footer-powered a:hover {
    color: var(--ink);
}

.page-hero {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 6rem 0 3rem;
}

.page-hero.compact {
    padding-bottom: 4rem;
}

.blog-toolbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: grid;
    gap: 1.2rem;
}

.search-form {
    display: flex;
    gap: .8rem;
    align-items: end;
    flex-wrap: wrap;
}

.search-form label,
.order-form label {
    display: grid;
    gap: .45rem;
    color: var(--muted);
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .8rem .9rem;
    background: #fff;
    color: var(--ink);
}

input:disabled,
textarea:disabled {
    background: #f1eee8;
}

.category-row {
    display: flex;
    gap: .55rem;
    flex-wrap: wrap;
}

.category-row a,
.pagination a {
    padding: .45rem .75rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    text-decoration: none;
    background: #fff;
}

.category-row a.active,
.pagination a.active {
    background: var(--moss);
    color: #fff;
    border-color: var(--moss);
}

.featured-post {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 2rem;
    padding: 1.2rem;
    margin-bottom: 1.4rem;
    align-items: center;
}

.featured-post img,
.post-card img,
.article-header img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
}

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

.post-card {
    padding: 1rem;
}

.post-card h3 a {
    text-decoration: none;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 2rem;
}

.article {
    width: min(900px, 92vw);
    margin: 0 auto;
    padding: 5rem 0;
}

.article-header {
    margin-bottom: 2.2rem;
}

.article-header h1 {
    margin: .5rem 0 1rem;
}

.article-header img {
    margin-top: 2rem;
}

.article-body {
    font-size: 1.08rem;
}

.article-body h2,
.article-body h3 {
    color: var(--ink);
    margin-top: 2.2rem;
}

.article-body a {
    color: var(--wine);
    font-weight: 700;
}

.article-body blockquote {
    margin: 2rem 0;
    padding-left: 1.2rem;
    border-left: 4px solid var(--wine);
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}

.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}

.order-section {
    padding-top: 2rem;
}

.order-form {
    display: grid;
    gap: 1rem;
    max-width: 920px;
    padding: 1.5rem;
}

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

.choice-group {
    display: grid;
    gap: .85rem;
}

.choice-group legend {
    font-weight: 800;
    color: var(--ink);
}

.choice-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.choice-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0;
}

.choice-pill input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.choice-pill span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: .7rem .95rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-weight: 700;
    color: var(--muted);
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.choice-pill input:checked + span {
    border-color: var(--wine);
    background: rgba(122, 52, 68, .08);
    color: var(--wine);
}

.order-note-stack {
    display: grid;
    gap: .9rem;
}

.consent-row {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: .75rem;
    align-items: start;
    color: var(--muted);
    font-weight: 600;
}

.consent-row input {
    margin-top: .15rem;
}

.consent-row a {
    color: var(--wine);
    font-weight: 800;
}

.checkout-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff, rgba(248, 245, 239, .92));
}

.checkout-bar strong,
.checkout-state strong {
    display: block;
}

.checkout-bar span,
.checkout-state span,
.legal-updated {
    color: var(--muted);
}

.checkout-state {
    display: grid;
    gap: .3rem;
    width: min(920px, 100%);
    margin: 0 auto 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.checkout-state.paid {
    border-color: rgba(83, 104, 90, .28);
}

.checkout-state.cancelled {
    border-color: rgba(122, 52, 68, .24);
}

.thank-you-card {
    width: min(920px, 100%);
    margin: 0 auto;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.thank-you-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.thank-you-grid h2 {
    margin-top: 0;
}

.thank-you-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.legal-updated {
    margin-top: 1rem;
    font-size: .95rem;
}

.legal-article {
    padding-top: 0;
}

.legal-body {
    display: grid;
    gap: 1.4rem;
}

.legal-section {
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.legal-section h2 {
    margin-top: 0;
    margin-bottom: .65rem;
    font-size: 1.5rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    min-height: 52px;
    padding: .8rem 1rem;
    border-radius: 999px;
    background: #1f9d61;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(31, 157, 97, .28);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto 1fr;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 76px 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: .8rem 4vw 1rem;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

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

    .site-nav a {
        padding: .9rem 0;
        border-bottom: 1px solid var(--line);
    }

    .header-actions {
        justify-self: end;
    }

    .steps,
    .post-grid,
    .trust-band {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .split-section,
    .emotional-section,
    .pricing-section,
    .featured-post,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .sticky-heading {
        position: static;
    }

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

@media (max-width: 680px) {
    .site-header {
        min-height: 68px;
        gap: .65rem;
    }

    .header-actions .button {
        display: none;
    }

    .site-nav {
        inset: 68px 0 auto;
    }

    .hero {
        min-height: auto;
        align-items: stretch;
    }

    .hero-media {
        background:
            linear-gradient(180deg, rgba(251, 250, 247, .16) 0%, rgba(251, 250, 247, .62) 46%, rgba(251, 250, 247, .94) 76%, rgba(251, 250, 247, 1) 100%),
            url('/assets/img/ereoo-hero.png') center 24% / cover no-repeat;
    }

    .hero-inner {
        display: grid;
        align-content: end;
        min-height: calc(100svh - 68px);
        padding: 7.25rem 0 3rem;
    }

    .hero h1,
    .page-hero h1 {
        max-width: 10ch;
        font-size: clamp(2.9rem, 14vw, 4.35rem);
    }

    .hero-copy,
    .page-hero p {
        max-width: 100%;
        margin-top: 1.1rem;
        font-size: 1.02rem;
    }

    .hero-actions {
        width: 100%;
        gap: .85rem;
    }

    .hero-actions .button,
    .hero-actions .text-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .trust-band,
    .steps,
    .post-grid,
    .occasion-list {
        grid-template-columns: 1fr;
    }

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

    .section,
    .page-hero,
    .article {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .song-overlay {
        padding: .8rem;
    }

    .song-overlay-meta {
        max-width: 100%;
        font-size: .65rem;
    }

    .song-toggle {
        width: 58px;
        height: 58px;
    }

    .song-toggle-icon--play {
        margin-left: 3px;
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 16px;
    }

    .song-toggle-icon--pause {
        gap: 5px;
    }

    .song-toggle-icon--pause span {
        width: 5px;
        height: 20px;
    }

    .song-overlay-title {
        font-size: 1.05rem;
    }

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

    .checkout-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .thank-you-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 48px;
        padding: .75rem .95rem;
    }

    .whatsapp-float span {
        display: none;
    }
}
