/* ============================================================
   Pearl & Polish — Main Stylesheet
   Palette: rose gold #b76e79 | champagne gold #c9a96e | blush #fce4ec | cream #fdf6f7
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --rose:      #b76e79;
    --gold:      #c9a96e;
    --blush:     #fce4ec;
    --blush-mid: #f8bbd0;
    --cream:     #fdf6f7;
    --white:     #ffffff;
    --dark:      #3a2e30;
    --mid:       #7a6065;
    --light:     #f5eaec;
    --shadow:    rgba(183, 110, 121, 0.12);
    --radius:    16px;
    --transition: 0.28s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
    color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { color: var(--mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}
.section { padding: 90px 0; }
.center { text-align: center; }

/* === EYEBROW / SUBTITLE === */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 10px;
    display: block;
}
.section-title { margin-bottom: 16px; }
.section-sub { color: var(--mid); font-size: 1rem; max-width: 560px; margin: 0 auto 50px; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    border: none;
    text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(183,110,121,0.35);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(183,110,121,0.45); }

.btn-outline {
    background: transparent;
    color: var(--rose);
    border: 2px solid var(--rose);
}
.btn-outline:hover { background: var(--blush); }

.btn-white {
    background: var(--white);
    color: var(--rose);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.btn-white:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.18); }

.btn-wa {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { box-shadow: 0 10px 28px rgba(37,211,102,0.45); }

.btn-block { width: 100%; justify-content: center; }

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(253, 246, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(183,110,121,0.08);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px var(--shadow); }

.header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link { text-decoration: none; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--dark);
    letter-spacing: 0.5px;
}
.logo-amp { color: var(--rose); }

.site-nav { display: flex; gap: 36px; align-items: center; }
.nav-link {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mid);
    position: relative;
    padding-bottom: 4px;
    text-decoration: none;
    transition: color var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(to right, var(--rose), var(--gold));
    transition: width var(--transition);
    border-radius: 2px;
}
.nav-link:hover,
.nav-link.active { color: var(--rose); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--rose);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === SITE MAIN === */
.site-main { padding-top: 72px; }

/* === HERO === */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #fce4ec 0%, #f8bbd0 40%, #e8a0b4 70%, #c9778a 100%);
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(58,46,48,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 40px 28px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: var(--white);
    text-shadow: 0 2px 20px rgba(58,46,48,0.2);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.9); }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    max-width: 480px;
    margin: 0 auto 36px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll-hint span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    margin: 0 auto;
    animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50%       { opacity: 1; transform: scaleY(1); }
}

/* === ABOUT SECTION === */
.about-section { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-text p { color: var(--mid); }
.about-text p + p { margin-top: 0; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid rgba(183,110,121,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px var(--shadow); }
.feature-icon {
    font-size: 1.2rem;
    color: var(--rose);
    margin-bottom: 10px;
}
.feature-card h3 { font-size: 0.95rem; color: var(--dark); margin-bottom: 6px; }
.feature-card p  { font-size: 0.85rem; margin: 0; }

/* === PRICING SECTION === */
.pricing-section { background: var(--cream); }
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: 0 4px 20px var(--shadow);
    border-top: 3px solid;
    border-image: linear-gradient(to right, var(--rose), var(--gold)) 1;
}

.pricing-cat {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--rose);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--blush);
}

.pricing-list { display: flex; flex-direction: column; gap: 14px; }
.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--mid);
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(183,110,121,0.12);
}
.pricing-list li:last-child { border-bottom: none; padding-bottom: 0; }
.price {
    font-weight: 700;
    color: var(--rose);
    white-space: nowrap;
    margin-left: 12px;
}

.pricing-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--blush), #fce4ec);
    border-radius: var(--radius);
    padding: 40px 30px;
}
.pricing-cta p { font-size: 1rem; margin-bottom: 20px; }

/* === PORTFOLIO PREVIEW === */
.portfolio-preview-section { background: var(--white); }
.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.preview-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.preview-item:hover img { transform: scale(1.06); }
.preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58,46,48,0.55) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition);
}
.preview-item:hover .preview-overlay { opacity: 1; }
.preview-overlay span {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--rose), var(--gold));
    padding: 80px 0;
    text-align: center;
}
.cta-banner .container { max-width: 600px; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 28px; }

/* === PAGE HERO (inner pages) === */
.page-hero {
    background: linear-gradient(135deg, #b76e79, #c9a96e);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero--short { min-height: 340px; padding: 60px 28px; }
.page-hero-content h1 { color: var(--white); }
.page-hero-content p  { color: rgba(255,255,255,0.85); max-width: 520px; margin: 12px auto 0; }

/* === PORTFOLIO PAGE === */
.portfolio-section { background: var(--cream); }

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}
.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--mid);
    background: var(--white);
    border: 1.5px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}
.filter-tab:hover { border-color: var(--rose); color: var(--rose); text-decoration: none; }
.filter-tab.active {
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(183,110,121,0.35);
}
.tab-count {
    background: rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 1px 7px;
    font-size: 0.72rem;
}
.filter-tab:not(.active) .tab-count { background: var(--blush); color: var(--rose); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-item:hover { transform: translateY(-6px); box-shadow: 0 12px 32px var(--shadow); }
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58,46,48,0.6) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition);
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-cat {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.portfolio-item-expand {
    background: rgba(255,255,255,0.2);
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    color: var(--white);
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.portfolio-item-expand:hover { background: rgba(255,255,255,0.4); }

.empty-portfolio { text-align: center; padding: 80px 20px; color: var(--mid); }

/* === LIGHTBOX === */
.lightbox-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20,10,12,0.85);
    z-index: 1000;
    backdrop-filter: blur(4px);
}
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.open,
.lightbox-backdrop.open { display: flex; }

.lightbox-inner { text-align: center; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}
.lightbox-caption { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 12px; letter-spacing: 1px; text-transform: uppercase; }

.lightbox-close {
    position: fixed;
    top: 20px; right: 24px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 2.2rem;
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* === CONTACT PAGE === */
.contact-section { background: var(--cream); }
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.wa-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 40px;
    box-shadow: 0 4px 24px var(--shadow);
    text-align: center;
}
.wa-icon {
    width: 80px; height: 80px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}
.wa-icon svg { width: 40px; height: 40px; color: #25d366; }
.wa-card h2 { color: var(--dark); margin-bottom: 14px; font-size: 1.6rem; }
.wa-card p  { color: var(--mid); max-width: 380px; margin: 0 auto 24px; }
.wa-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blush);
    color: var(--rose);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 26px;
    box-shadow: 0 4px 16px var(--shadow);
}
.info-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--rose);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.info-card p {
    font-size: 0.9rem;
    color: var(--mid);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.info-card svg { flex-shrink: 0; margin-top: 3px; color: var(--rose); }

.tip-list { display: flex; flex-direction: column; gap: 8px; }
.tip-list li {
    font-size: 0.88rem;
    color: var(--mid);
    padding-left: 16px;
    position: relative;
}
.tip-list li::before {
    content: '♡';
    position: absolute;
    left: 0;
    color: var(--rose);
    font-size: 0.75rem;
    top: 2px;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity var(--transition);
}
.social-pill:hover { opacity: 0.85; text-decoration: none; }
.social-pill.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

/* === FOOTER === */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}
.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.2rem; display: block; margin-bottom: 10px; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-style: italic; }

.site-footer h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
}
.footer-links, .footer-contact, .footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact p, .footer-contact a, .footer-social a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25d366 !important;
    font-weight: 700;
}
.footer-wa svg { width: 16px; height: 16px; }

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6) !important;
    text-decoration: none;
}
.social-link svg { width: 16px; height: 16px; }
.social-link.instagram:hover { color: #e1306c !important; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 28px;
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}
.admin-link { color: rgba(255,255,255,0.2) !important; font-size: 0.72rem; }
.admin-link:hover { color: rgba(255,255,255,0.5) !important; }

/* === FLOATING WHATSAPP BUTTON === */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 800;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; color: var(--white); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .preview-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .site-nav {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0 30px;
        box-shadow: 0 8px 24px var(--shadow);
        border-top: 1px solid var(--blush);
    }
    .site-nav.open { display: flex; }
    .nav-link { padding: 14px 28px; font-size: 0.95rem; }
    .nav-link::after { display: none; }
    .nav-toggle { display: flex; }
    .about-features { grid-template-columns: 1fr; }
    .preview-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .preview-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 26px 20px; }
    .wa-card { padding: 30px 22px; }
}
