/* ============================================
   Santa Dave & Terri Claus — Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Colors */
    --crimson: #8B1A1A;
    --red: #C41E3A;
    --red-light: #E63946;
    --gold: #D4A847;
    --gold-light: #F0D68A;
    --gold-dark: #B8922E;
    --green-deep: #1B4332;
    --green: #2D6A4F;
    --bg-dark: #0D1117;
    --bg-section: #131820;
    --bg-card: #1A2030;
    --text-primary: #FAF3E6;
    --text-secondary: #D4C5A9;
    --text-muted: #8B9AB5;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Spacing */
    --section-pad: 6rem 0;
    --container-width: 1140px;

    /* Transitions */
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 700;
}
.skip-link:focus {
    top: 0;
}

/* --- Section Titles --- */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0.75rem auto 0;
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-style: italic;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 71, 0.3);
}
.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}
.btn--outline:hover {
    background: var(--text-primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}
.btn--large { padding: 1rem 3rem; font-size: 1.1rem; }
.btn--full { width: 100%; }

/* --- Dividers --- */
.divider {
    text-align: center;
    padding: 1.5rem 0;
    opacity: 0.6;
}

/* --- Snowflakes --- */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    animation: snowfall linear infinite;
}
@keyframes snowfall {
    0% { opacity: 0; transform: translateX(0) translateY(0) rotate(0deg); }
    10% { opacity: 0.6; }
    90% { opacity: 0.4; }
    100% { opacity: 0; transform: translateX(var(--drift)) translateY(100vh) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .snowflake { display: none; }
    .hero__scroll { animation: none; }
    .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
    background: transparent;
}
.nav--scrolled {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.nav__container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    color: var(--text-primary);
    z-index: 1001;
}
.nav__logo:hover { color: var(--gold-light); }
.nav__logo-script {
    font-family: var(--font-script);
    font-size: 1.6rem;
    line-height: 1;
}
.nav__logo-amp {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
}
.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav__list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}
.nav__link {
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition);
    transform: translateX(-50%);
}
.nav__link:hover,
.nav__link--active {
    color: var(--gold);
}
.nav__link:hover::after,
.nav__link--active::after {
    width: 60%;
}
.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: all var(--transition);
}
.nav__cta:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
    border-radius: 2px;
}
.nav__toggle--open .nav__toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle--open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle--open .nav__toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
    background: radial-gradient(ellipse at 50% 30%, rgba(139, 26, 26, 0.4) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(27, 67, 50, 0.2) 0%, transparent 50%),
                linear-gradient(180deg, var(--bg-dark) 0%, #12151C 50%, var(--bg-dark) 100%);
    overflow: hidden;
}
.hero__glow {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 71, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero__welcome {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.hero__title {
    font-family: var(--font-script);
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.hero__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    opacity: 0.5;
    animation: bobUpDown 2s ease-in-out infinite;
}
@keyframes bobUpDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
    padding: var(--section-pad);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 50%, var(--bg-dark) 100%);
}
.philosophy__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.philosophy__content p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}
.philosophy__lead {
    font-size: 1.15rem !important;
    color: var(--text-primary) !important;
    line-height: 1.8;
}
.philosophy__faith {
    margin: 2rem 0;
    padding: 2rem;
    border-left: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 4px;
    background: rgba(212, 168, 71, 0.03);
}
.philosophy__faith p { text-align: left; }
.philosophy__faith strong { color: var(--gold-light); }
.philosophy__connection {
    margin: 2.5rem 0;
}
.philosophy__verse {
    font-family: var(--font-heading);
    font-size: 1.2rem !important;
    color: var(--text-primary) !important;
    font-style: italic;
    margin-bottom: 0.75rem !important;
}
.philosophy__verse em {
    color: var(--gold);
    font-style: normal;
    font-weight: 700;
}
.philosophy__mrs-claus {
    margin: 2rem 0;
    text-align: left;
}
.philosophy__mrs-claus ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}
.philosophy__mrs-claus li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
}
.philosophy__mrs-claus li::before {
    content: '~';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.philosophy__mrs-claus strong { color: var(--gold-light); }
.philosophy__closing {
    font-family: var(--font-heading);
    font-size: 1.15rem !important;
    color: var(--text-primary) !important;
    font-style: italic;
    margin-top: 2rem !important;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--section-pad);
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(27, 67, 50, 0.08) 50%, var(--bg-dark) 100%);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    margin: 3rem 0;
}
.about__frame {
    border: 3px solid var(--gold);
    border-radius: 12px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(212, 168, 71, 0.1), rgba(212, 168, 71, 0.02));
    box-shadow: 0 0 40px rgba(212, 168, 71, 0.08);
}
.about__placeholder {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-section));
    border-radius: 8px;
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.about__placeholder p {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-style: italic;
}
.about__text p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}
.about__text strong { color: var(--text-primary); }
.about__mission {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(212, 168, 71, 0.2);
    border-bottom: 1px solid rgba(212, 168, 71, 0.2);
}

/* Credentials */
.credentials {
    margin-top: 4rem;
}
.credentials__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 2rem;
}
.credentials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.credential-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 71, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}
.credential-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 168, 71, 0.1);
}
.credential-card__icon {
    margin-bottom: 0.75rem;
}
.credential-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.credential-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-pad);
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(139, 26, 26, 0.06) 50%, var(--bg-dark) 100%);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 71, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    border-color: rgba(212, 168, 71, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.service-card:hover::before { opacity: 1; }
.service-card--featured {
    border-color: var(--gold);
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--bg-card), rgba(139, 26, 26, 0.1));
}
.service-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}
.service-card__icon {
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
.services__also {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    padding-top: 1rem;
}
.services__also strong {
    color: var(--gold);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: var(--section-pad);
    background: radial-gradient(ellipse at center, rgba(139, 26, 26, 0.15) 0%, transparent 70%),
                var(--bg-dark);
    text-align: center;
}
.pricing__content {
    max-width: 700px;
    margin: 0 auto;
}
.pricing__headline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1.5rem;
}
.pricing__desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.pricing__contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.pricing__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}
.pricing__phone span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: var(--font-body);
}
.pricing__phone:hover { color: var(--gold-light); }
.pricing__email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
}
.pricing__email:hover { color: var(--gold); }
.pricing__area {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.pricing__area strong { color: var(--text-secondary); }

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-pad);
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-section));
}
.contact__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Form */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}
.required { color: var(--red-light); }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 71, 0.15);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 71, 0.1);
}
input::placeholder, textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}
select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4A847' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
select option {
    background: var(--bg-card);
    color: var(--text-primary);
}
textarea { resize: vertical; min-height: 120px; }

.form-status {
    margin-top: 1rem;
    padding: 0;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    transition: all var(--transition);
}
.form-status--success {
    padding: 1rem;
    background: rgba(45, 106, 79, 0.2);
    border: 1px solid var(--green);
    color: #6BCB77;
}
.form-status--error {
    padding: 1rem;
    background: rgba(196, 30, 58, 0.2);
    border: 1px solid var(--red);
    color: var(--red-light);
}

/* Contact Info Sidebar */
.contact__info-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 71, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.contact__info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.contact__info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}
.contact__info-item:last-child { margin-bottom: 0; }
.contact__info-item svg { flex-shrink: 0; margin-top: 2px; }
.contact__info-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}
.contact__info-item a {
    color: var(--text-primary);
    font-weight: 400;
}
.contact__info-item a:hover { color: var(--gold); }
.contact__info-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.contact__expect {
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 71, 0.15);
    border-radius: 16px;
    padding: 2rem;
}
.contact__expect h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.contact__expect p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 3rem 0 2rem;
    background: #080B10;
    text-align: center;
    border-top: 1px solid rgba(212, 168, 71, 0.1);
}
.footer__logo-script {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--gold);
}
.footer__nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}
.footer__nav a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer__nav a:hover { color: var(--gold); }
.footer__mission {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}
.footer__copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   MUSIC TOGGLE
   ============================================ */
.music-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all var(--transition);
    color: var(--gold);
}
.music-toggle:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: scale(1.1);
}
.music-toggle--playing {
    animation: musicPulse 1.5s ease-in-out infinite;
}
@keyframes musicPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 71, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(212, 168, 71, 0); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about__frame {
        max-width: 400px;
        margin: 0 auto;
    }
    .credentials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    :root {
        --section-pad: 4rem 0;
    }

    /* Mobile Nav */
    .nav__toggle { display: flex; }
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.4s ease;
    }
    .nav__menu--open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        text-align: center;
    }
    .nav__link::after { display: none; }
    .nav__cta {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }

    /* Sections */
    .hero { min-height: 90vh; }
    .hero__title { font-size: clamp(2.5rem, 10vw, 3.5rem); }

    .services__grid {
        grid-template-columns: 1fr;
    }
    .service-card--featured {
        grid-column: auto;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .pricing__phone {
        font-size: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .music-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}
