:root {
    --pink-soft: #fdf2f4;
    --pink-light: #fde2e4;
    --pink-medium: #f497a9;
    --pink-dark: #e8798f;
    --text: #1a1a1a;
    --text-muted: #555;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', 'Segoe UI', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --shadow: 0 4px 24px rgba(244, 151, 169, 0.15);
    --radius: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--pink-soft);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--pink-dark);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--pink-medium);
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

.logo-img {
    height: 84px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

.main-nav a:hover {
    color: var(--pink-dark);
}

.nav-cta {
    background: var(--pink-medium);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 999px;
}

.nav-cta:hover {
    background: var(--pink-dark);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.2s;
}

/* Alerts */
.alert {
    padding: 0.875rem 0;
    font-size: 0.95rem;
    text-align: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

/* Hero */
.hero {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--pink-soft) 0%, var(--white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
    text-align: center;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--pink-light);
}

.sparkle,
.heart {
    color: var(--pink-medium);
    font-size: 0.85rem;
}

.hero-sub {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
    text-align: center;
}

.hero-intro {
    margin: 1.25rem 0 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 36rem;
}

.hero-cta {
    margin: 1.5rem 0;
}

.cta-script {
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--pink-medium);
    display: block;
    line-height: 1.1;
}

.cta-serif {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    display: block;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary {
    background: var(--pink-medium);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--pink-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--pink-dark);
    border: 2px solid var(--pink-medium);
}

.btn-secondary:hover {
    background: var(--pink-light);
    color: var(--pink-dark);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

/* Section headings */
.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-heading h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0 0 1rem;
    line-height: 1.25;
}

.section-lead {
    margin: 1rem 0 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* About / intro */
.intro-section {
    padding: 4rem 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.intro-text p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1.02rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-highlights {
    background: var(--pink-soft);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.intro-highlights h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

.intro-highlights ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.intro-highlights li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text);
}

.intro-highlights li::before {
    content: '♥';
    position: absolute;
    left: 0;
    color: var(--pink-medium);
    font-size: 0.7rem;
    top: 0.65rem;
}

.intro-highlights .btn {
    width: 100%;
    text-align: center;
}

/* Contact bar */
.contact-bar {
    background: var(--white);
    padding: 2rem 0;
    border-top: 1px solid var(--pink-light);
    border-bottom: 1px solid var(--pink-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--pink-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    line-height: 0;
}

.contact-icon::after {
    content: '';
    width: 14px;
    height: 14px;
    background-color: var(--white);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.contact-item a,
.contact-item span {
    font-size: 0.95rem;
    color: var(--text);
}

.contact-item a:hover {
    color: var(--pink-dark);
}

/* Main content grid */
.main-content {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: start;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--pink-light);
}

.card-header h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
}

.card-header-pink {
    background: var(--pink-medium);
    color: var(--white);
    padding: 1.25rem 1.5rem;
}

.card-header-pink h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.card-intro {
    margin: 0;
    padding: 1rem 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.card-intro-light {
    color: rgba(255, 255, 255, 0.92);
    padding-top: 0.75rem;
    padding-bottom: 0.25rem;
}

.card-header-pink + .card-intro-light {
    background: var(--pink-medium);
    margin-top: -0.5rem;
    padding-bottom: 0.75rem;
}

.heart-icon {
    color: var(--pink-medium);
    font-size: 1.1rem;
}

.card-header-pink .heart-icon {
    color: var(--white);
}

.heart-list {
    list-style: none;
    margin: 0;
    padding: 1.25rem 1.5rem 1.5rem;
}

.heart-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.bullet-heart {
    color: var(--pink-medium);
    flex-shrink: 0;
    font-size: 0.75rem;
    margin-top: 0.35rem;
}

.card-decoration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 2rem;
    opacity: 0.4;
}

.card-pricing {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--white) 100%);
}

.pricing-label {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.pricing-amount {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pink-medium);
    margin: 0;
    line-height: 1.1;
}

.pricing-amount span {
    font-size: 1.25rem;
    font-weight: 600;
}

.pricing-note {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.pricing-detail {
    margin: 1.25rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--pink-light);
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.services-list {
    columns: 1;
}

/* How it works */
.steps-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--pink-soft) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--pink-medium);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin: 0 0 0.75rem;
}

.step-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* CTA banner */
.cta-banner {
    padding: 3rem 0;
    background: var(--pink-medium);
    color: var(--white);
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-banner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 0.75rem;
    color: var(--white);
}

.cta-banner p {
    margin: 0;
    max-width: 540px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cta-banner-actions .btn {
    min-width: 260px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--pink-dark);
    border: 2px solid transparent;
}

.cta-banner .btn-primary:hover {
    background: var(--pink-soft);
    color: var(--pink-dark);
}

.cta-banner .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-banner .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* Quote section */
.quote-section {
    padding: 3rem 0;
    background: var(--white);
}

.quote-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--pink-soft);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.quote-card h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
    text-align: center;
}

.quote-intro {
    text-align: center;
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}

.form-row {
    margin-bottom: 1rem;
}

.form-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--pink-light);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--pink-medium);
}

/* Footer */
.site-footer {
    background: var(--pink-light);
    padding-top: 3rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}

.footer-contact h3 {
    font-family: var(--font-serif);
    margin: 0 0 1rem;
}

.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.footer-contact .heart-icon {
    font-size: 0.7rem;
}

.footer-bottom {
    background: var(--pink-medium);
    color: var(--white);
    text-align: center;
    padding: 1rem 0;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-powered {
    margin-top: 0.35rem !important;
    font-size: 0.8rem;
    opacity: 0.95;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom a:hover {
    color: var(--pink-soft);
}

/* Discreet admin entrance — a faint decorative heart. Visible as a small brand
   accent, but with no underline, pointer cursor or hover change so it never
   looks like it links anywhere. */
.footer-bottom .footer-mark,
.footer-bottom .footer-mark:hover {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.85rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    cursor: default;
    user-select: none;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid,
    .content-grid,
    .footer-inner,
    .intro-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        order: -1;
    }

    .hero-logo img {
        max-width: 100%;
    }

    .hero-content {
        text-align: center;
    }

    .hero-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner p {
        max-width: none;
    }

    .cta-banner-actions {
        width: 100%;
    }

    .cta-banner-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .site-header .container {
        position: relative;
    }
}

/* Gallery page */
.page-hero {
    padding: 3.5rem 0 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--pink-soft) 100%);
}

.page-hero-intro {
    max-width: 42rem;
    margin: 1rem auto 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.gallery-section {
    padding: 2rem 0 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
    gap: 2rem;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 1.25rem;
}

.gallery-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 0 0 1rem;
    text-align: center;
}

.gallery-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.gallery-photo {
    margin: 0;
}

.gallery-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: calc(var(--radius) - 4px);
    display: block;
}

.gallery-lightbox-trigger {
    cursor: zoom-in;
    transition: opacity 0.2s, transform 0.15s;
}

.gallery-lightbox-trigger:hover,
.gallery-lightbox-trigger:focus-visible {
    opacity: 0.92;
    outline: 2px solid var(--pink-medium);
    outline-offset: 2px;
}

.gallery-photo figcaption {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pink-dark);
}

.empty-gallery {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-cta p {
    margin: 0 0 1rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
}

@media (max-width: 560px) {
    .gallery-compare {
        grid-template-columns: 1fr;
    }
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.gallery-lightbox[hidden] {
    display: none;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.85);
}

.gallery-lightbox-dialog {
    position: relative;
    max-width: min(96vw, 1200px);
    max-height: calc(100vh - 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 2.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.gallery-lightbox-dialog img {
    max-width: 100%;
    max-height: calc(100vh - 6rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

#gallery-lightbox-caption {
    margin: 1rem 0 0;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 560px) {
    .gallery-lightbox-close {
        top: -2rem;
        right: -0.25rem;
    }
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .quote-card {
        padding: 1.5rem;
    }
}

/* --- Emailed action pages: job completion & customer feedback --- */
.action-section {
    padding: 3rem 0 4.5rem;
    background: var(--pink-soft);
}

.action-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    text-align: center;
}

.action-card h2 {
    font-family: var(--font-serif);
    color: var(--text);
    margin: 0.5rem 0 0.75rem;
}

.action-lead {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.action-note {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.action-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background: var(--pink-dark);
    color: var(--white);
    font-size: 2rem;
    line-height: 64px;
    text-align: center;
}

.action-details {
    text-align: left;
    margin: 0 auto 1.75rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--pink-light);
}

.action-details > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
}

.action-details > div:nth-child(odd) {
    background: var(--pink-soft);
}

.action-details span {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.action-details strong {
    color: var(--text);
    text-align: right;
}

.action-form {
    margin: 0;
}

.feedback-form {
    text-align: left;
}

.feedback-form .form-row {
    margin-bottom: 1.25rem;
}

.feedback-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--text);
}

.feedback-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--pink-light);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    resize: vertical;
}

.star-rating {
    border: 0;
    margin: 0 0 1.25rem;
    padding: 0;
    text-align: center;
}

.star-rating legend {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* Reverse-ordered radios let CSS highlight the hovered/checked star and all
   those before it without any JavaScript. */
.star-rating-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.star-rating-stars input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.star-rating-stars label {
    font-size: 2.4rem;
    line-height: 1;
    padding: 0 0.1rem;
    color: var(--pink-light);
    cursor: pointer;
    transition: color 0.15s ease;
}

.star-rating-stars label:hover,
.star-rating-stars label:hover ~ label,
.star-rating-stars input:checked ~ label {
    color: var(--pink-dark);
}

.star-rating-stars input:focus-visible + label {
    outline: 2px solid var(--pink-medium);
    outline-offset: 2px;
}

.site-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

body.site-modal-open {
    overflow: hidden;
}

.site-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.55);
}

.site-modal-dialog {
    position: relative;
    width: min(100%, 440px);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
    text-align: center;
    animation: site-modal-in 0.25s ease;
}

@keyframes site-modal-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.site-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pink-dark);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
}

.site-modal-dialog h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.6rem;
}

.site-modal-dialog p {
    margin: 0 0 1.5rem;
    line-height: 1.6;
}
