/* ============================================================
   Mayur Events — Upgraded Style Sheet
   Fonts: Cinzel (headings) + Playfair Display (subheadings) + Cormorant Garamond (body)
   ============================================================ */

:root {
    --bg: #f7f2ea;
    --surface: #fffdf9;
    --ink: #1f1b18;
    --muted: #6f655c;
    --brand: #b1832f;
    --brand-deep: #8f661f;
    --accent: #2f5d50;
    --line: #e5d8c6;
    --shadow: 0 14px 30px rgba(40, 29, 15, 0.1);
    --shadow-lg: 0 24px 50px rgba(40, 29, 15, 0.14);
    --radius: 18px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--ink);
    background: radial-gradient(circle at top right, #fcf4e7 0, #f7f2ea 50%, #f3eee5 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Directional variants */
.reveal-left {
    opacity: 0;
    transform: translateX(-56px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(56px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.88) translateY(24px);
    transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.17s; }
.reveal-delay-3 { transition-delay: 0.26s; }
.reveal-delay-4 { transition-delay: 0.35s; }
.reveal-delay-5 { transition-delay: 0.44s; }

/* Reduced motion override */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ── Scroll Progress Bar ── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--brand-deep), var(--brand), #eed8a0);
    z-index: 2000;
    border-radius: 0 2px 2px 0;
    transition: width 0.05s linear;
    pointer-events: none;
}

/* ── Container & Utilities ── */
.bg-surface {
    background-color: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 249, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 12px;
    transition: padding var(--transition);
}

.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }

.logo-img {
    display: block;
    width: auto;
    height: 58px;
    max-width: 44vw;
    object-fit: contain;
    transition: height var(--transition);
}

/* Desktop nav */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ink);
    padding: 6px 10px;
    border-radius: 30px;
    transition: background 0.22s ease, color 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: #efe2cc;
    color: var(--brand-deep);
}

/* Header CTA */
.header-consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--brand), #c9983d);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(177, 131, 47, 0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.header-consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(177, 131, 47, 0.32);
}

/* Scrolled header */
.site-header.scrolled {
    background: rgba(255, 253, 249, 0.99);
    box-shadow: 0 6px 22px rgba(35, 26, 16, 0.09);
}
.site-header.scrolled .navbar { padding: 4px 0; }
.site-header.scrolled .logo-img { height: 42px; }
.site-header.scrolled .nav-links a { font-size: 0.72rem; }

/* ── Hamburger Menu ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.nav-toggle:hover { background: #f0e6d3; }

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
}
.mobile-nav.open { pointer-events: all; }

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 14, 8, 0);
    transition: background 0.4s ease;
}
.mobile-nav.open .mobile-nav-backdrop { background: rgba(20, 14, 8, 0.45); }

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--surface);
    box-shadow: -20px 0 50px rgba(20, 14, 8, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 28px 24px 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: 1px solid var(--line);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--ink);
    display: grid;
    place-items: center;
    transition: background 0.2s;
    margin-bottom: 16px;
}
.mobile-nav-close:hover { background: #f0e6d3; }

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-nav-links a {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--ink);
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid var(--line);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: #efe2cc;
    color: var(--brand-deep);
}

.mobile-nav-cta {
    margin-top: 16px;
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--brand), #c9983d);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    box-shadow: 0 8px 20px rgba(177, 131, 47, 0.25);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: 999px;
    padding: 13px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--brand), #c9983d);
    color: #fff;
    box-shadow: 0 10px 24px rgba(177, 131, 47, 0.28);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(177, 131, 47, 0.36);
    filter: brightness(1.04);
}

.btn-outline {
    border: 1.5px solid var(--brand);
    color: var(--brand-deep);
    background: transparent;
}
.btn-outline:hover {
    background: #f4e6ce;
    transform: translateY(-2px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Hero background layer — separated so parallax via transform works cleanly */
.hero::before {
    content: '';
    position: absolute;
    inset: -10% 0;
    background: linear-gradient(rgba(24, 16, 8, 0.62), rgba(24, 16, 8, 0.62)),
                url("images/hero/frontpage.png") right center / cover no-repeat;
    z-index: 0;
    will-change: transform;
    transition: none;
}

/* Grain overlay — replaces the old ::before */
.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* The old ::before is replaced by .hero-grain div in HTML */

/* Gold shimmer line at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand), #eed8a0, var(--brand), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.hero-content {
    width: min(780px, 92%);
    padding: 52px 20px;
    position: relative;
    z-index: 2;
}

/* Hero entry animations */
.hero-content .eyebrow {
    animation: heroFadeUp 0.9s ease 0.2s both;
}
.hero-content h1 {
    animation: heroFadeUp 0.9s ease 0.45s both;
}
.hero-content .hero-sub {
    animation: heroFadeUp 0.9s ease 0.65s both;
}
.hero-content .cta-row {
    animation: heroFadeUp 0.9s ease 0.85s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #eed8b1;
    margin-bottom: 18px;
    padding: 6px 16px;
    border: 1px solid rgba(238, 216, 177, 0.35);
    border-radius: 999px;
    background: rgba(238, 216, 177, 0.08);
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
    font-family: Playfair Display, serif;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #f0e8de;
    margin-bottom: 32px;
    line-height: 1.7;
    font-style: italic;
}

.cta-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ============================================================
   MAIN SECTIONS
   ============================================================ */
main section {
    padding: 88px 0;
}

.section-head {
    margin-bottom: 36px;
}

.section-head h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    letter-spacing: 0.03em;
    margin-bottom: 10px;
    line-height: 1.15;
}

.section-head p {
    font-family: Playfair Display, serif;
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 660px;
}

/* Two column layout */
.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    align-items: center;
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(229, 216, 198, 0.5);
    pointer-events: none;
}
.feature-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feature-image:hover img { transform: scale(1.04); }

/* Info list */
.info-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}
.info-list li {
    list-style: none;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
    font-family: Playfair Display, serif;
    font-size: 1.08rem;
    line-height: 1.6;
    position: relative;
    padding-left: 42px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.info-list li:hover {
    box-shadow: 0 8px 24px rgba(40, 29, 15, 0.08);
    transform: translateX(3px);
}
.info-list li::before {
    content: '✦';
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--brand);
    font-size: 0.8rem;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-top: 3px solid var(--brand);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: 0 8px 22px rgba(36, 24, 9, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(177, 131, 47, 0.04), transparent);
    transition: height 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { height: 100%; }

.card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.card p {
    font-family: Playfair Display, serif;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.6;
}

.badge {
    display: inline-block;
    background: #e7f2ee;
    color: var(--accent);
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: 999px;
    padding: 3px 12px;
    margin-bottom: 12px;
}

/* ============================================================
   OUR PROCESS
   ============================================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    align-items: start;
    margin-top: 40px;
}
.process-card {
    text-align: center;
    position: relative;
    padding: 24px;
    background: #fffdf9;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
    transition: transform var(--transition);
}
.process-card:hover {
    transform: translateY(-5px);
}
.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--brand), #eed8b1);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(177, 131, 47, 0.2);
}
.process-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
    margin-top: 40px;
}
.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-item:hover img {
    transform: scale(1.05);
}
.portfolio-wide { grid-column: span 2; }
.portfolio-tall { grid-row: span 2; }

/* ============================================================
   TESTIMONIALS / CLIENT LOVE
   ============================================================ */
.client-love-section {
    padding: 80px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.testimonial-card {
    background: rgba(255, 251, 245, 0.9);
    border: 1px solid rgba(229, 216, 198, 0.95);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 12px 30px rgba(54, 38, 18, 0.05);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px; left: 24px;
    font-family: 'Cinzel', serif;
    font-size: 6rem;
    color: rgba(177, 131, 47, 0.1);
    line-height: 1;
    pointer-events: none;
}
.testimonial-card .client-love-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #574a41;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-card .client-love-meta h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #241915;
    margin-bottom: 4px;
}
.testimonial-card .client-love-meta p {
    font-family: 'Playfair Display', serif;
    color: #7e6f62;
    font-size: 0.95rem;
    font-style: italic;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
    padding: 16px 0 110px;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.2), rgba(255, 253, 249, 0.75));
}

.team-shell {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.team-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 56px;
}

.team-header-line {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, var(--brand), transparent);
    flex: 0 0 auto;
}

.team-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #16110d;
}

.team-header p {
    margin-top: 8px;
    font-family: 'Cinzel', serif;
    color: #c9a87a;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 56px;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}
.team-member:hover { transform: translateY(-6px); }

.team-photo {
    width: min(100%, 200px);
    aspect-ratio: 1;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 20px 40px rgba(54, 38, 18, 0.1);
    overflow: hidden;
    border: 2px solid rgba(229, 216, 198, 0.7);
    transition: box-shadow 0.3s ease;
}
.team-member:hover .team-photo {
    box-shadow: 0 28px 50px rgba(177, 131, 47, 0.2);
    border-color: rgba(177, 131, 47, 0.4);
}

.team-photo span {
    color: #fff8f1;
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px;
}

.team-photo-aman    { background: linear-gradient(135deg, #7b5f46, #c3a37a); background-image: url(images/Members/Aman.png); background-size: cover; background-position: center; }
.team-photo-kishan  { background: linear-gradient(135deg, #6f4d26, #d0a556); background-image: url(images/Members/Kishan.png); background-size: cover; background-position: center; }
.team-photo-sharthi { background: linear-gradient(135deg, #8a7868, #d3cbc2); background-image: url(images/Members/Sharthi.jpg); background-size: cover; background-position: center; }
.team-photo-varsha  { background: linear-gradient(135deg, #cb6f79, #f3c7cf); background-image: url(images/Members/Varsha.jpg); background-size: cover; background-position: center; }
.team-photo-anurag  { background: linear-gradient(135deg, #6aa0d5, #cad8f5); background-image: url(images/Members/Anurag.png); background-size: cover; background-position: center; }
.team-photo-vivek   { background: linear-gradient(135deg, #8f6326, #d8b066); background-image: url("images/Members/Vivek Kumar.png"); background-size: cover; background-position: center; }

.team-member h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 1.2;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
    color: #1c1612;
}

.team-member p {
    font-family: Playfair Display, serif;
    color: #c4965a;
    font-size: 0.95rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 8px 0 110px;
}

.faq-shell {
    width: min(1360px, 94%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 50px;
    align-items: start;
}

.faq-copy { padding-top: 6px; }

.faq-kicker {
    margin-bottom: 18px;
    color: #b45f2f;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.faq-copy h2 {
    max-width: 560px;
    font-family: 'Cinzel', serif;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #231815;
}

.faq-list { display: grid; gap: 18px; }

.faq-item {
    background: rgba(255, 251, 245, 0.94);
    border: 1px solid rgba(229, 216, 198, 0.92);
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(54, 38, 18, 0.07);
    overflow: hidden;
    transition: box-shadow 0.28s ease;
}
.faq-item:hover { box-shadow: 0 22px 44px rgba(54, 38, 18, 0.11); }

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: transparent;
    color: #312620;
    text-align: left;
    font-family: 'Cinzel', serif;
    font-size: clamp(0.92rem, 1.5vw, 1.08rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--brand-deep); }

.faq-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(177, 131, 47, 0.08);
    color: #8f661f;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.28s ease, background 0.28s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: rgba(177, 131, 47, 0.18);
}

.faq-answer { padding: 0 24px 24px; }
.faq-answer p {
    font-family: Playfair Display, serif;
    color: #7d6f63;
    font-size: 1.08rem;
    line-height: 1.75;
}

/* ============================================================
   CONTACT SECTION (HOME)
   ============================================================ */
.home-contact-section {
    padding: 6px 0 120px;
}

.home-contact-shell {
    width: min(1360px, 94%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.home-contact-copy { padding-top: 4px; }

.home-contact-kicker {
    margin-bottom: 16px;
    color: #b45f2f;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.home-contact-copy h2 {
    max-width: 560px;
    margin-bottom: 22px;
    font-family: 'Cinzel', serif;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #231815;
}

.home-contact-intro {
    max-width: 600px;
    margin-bottom: 30px;
    font-family: Playfair Display, serif;
    color: #75685e;
    font-size: 1.12rem;
    line-height: 1.75;
    font-style: italic;
}

.home-contact-cards {
    display: grid;
    gap: 16px;
    max-width: 560px;
}

.home-contact-card {
    background: rgba(255, 251, 245, 0.94);
    border: 1px solid rgba(229, 216, 198, 0.92);
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 16px 34px rgba(54, 38, 18, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-contact-card:hover {
    transform: translateX(4px);
    box-shadow: 0 22px 44px rgba(54, 38, 18, 0.11);
}

.home-contact-card span {
    display: block;
    margin-bottom: 4px;
    font-family: 'Cinzel', serif;
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-contact-card strong {
    font-family: Playfair Display, serif;
    color: #312620;
    font-size: 1.08rem;
    font-weight: 600;
}

/* Contact Form */
.home-contact-form {
    display: grid;
    gap: 18px;
    padding: 30px 26px 26px;
    background: rgba(255, 251, 245, 0.97);
    border: 1px solid rgba(229, 216, 198, 0.95);
    border-radius: 32px;
    box-shadow: 0 24px 48px rgba(54, 38, 18, 0.09);
}

.home-contact-form label {
    display: grid;
    gap: 7px;
}
.home-contact-form label span {
    font-family: 'Cinzel', serif;
    color: #312620;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-contact-form input,
.home-contact-form select,
.home-contact-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1.5px solid #ddd8d0;
    border-radius: 14px;
    padding: 13px 16px;
    background: #fcfbf9;
    font-family: Playfair Display, serif;
    font-size: 1.05rem;
    color: var(--ink);
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
    width: 100%;
    outline: none;
}
.home-contact-form input:focus,
.home-contact-form select:focus,
.home-contact-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(177, 131, 47, 0.12);
}

.home-contact-form textarea { min-height: 140px; resize: vertical; }

.home-contact-form .btn {
    width: 100%;
    margin-top: 4px;
    padding: 16px 24px;
    font-size: 0.82rem;
}

/* ============================================================
   PAGE HERO (Interior pages)
   ============================================================ */
.page-hero {
    min-height: 60vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    padding: 80px 0;
    background: linear-gradient(rgba(18, 12, 6, 0.68), rgba(18, 12, 6, 0.68)),
                url('images/hero/ring-mayur.jpg') center/cover no-repeat;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.page-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    animation: heroFadeUp 0.8s ease 0.2s both;
}
.page-hero p {
    font-family: Playfair Display, serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #f0e8de;
    font-style: italic;
    animation: heroFadeUp 0.8s ease 0.4s both;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-page {
    background: linear-gradient(180deg, #f8f1e7 0%, #f6eee4 100%);
}

.gallery-showcase {
    padding: 36px 0 90px;
}

.gallery-shell .container {
    border-top: 1px solid rgba(90, 70, 44, 0.18);
    padding-top: 40px;
}

.gallery-intro {
    margin-bottom: 38px;
}

.gallery-kicker {
    display: inline-block;
    margin-bottom: 18px;
    font-family: 'Cinzel', serif;
    color: #8b7862;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gallery-intro h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    color: #18130f;
}

.gallery-intro p {
    font-family: Playfair Display, serif;
    font-size: 1.12rem;
    color: #6b5e51;
    max-width: 560px;
    font-style: italic;
    line-height: 1.7;
}

/* Masonry grid */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
    margin-bottom: 110px;
}

.gallery-card {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(40, 29, 15, 0.1);
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}
.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 12, 6, 0.7), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: 1;
}

/* Beautiful glassmorphism overlay icon */
.gallery-card::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover { 
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(40, 29, 15, 0.16);
}
.gallery-card:hover::after { opacity: 1; }
.gallery-card:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-card:hover img { transform: scale(1.08); }

.gallery-card-tall  { grid-row: span 2; }
.gallery-card-wide  { grid-column: span 2; }
.gallery-card-medium { grid-row: span 1; }

/* Chip nav */
.gallery-chip-bar {
    position: fixed;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 251, 246, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(229, 216, 198, 0.9);
    border-radius: 999px;
    padding: 9px 16px;
    box-shadow: 0 16px 40px rgba(40, 29, 15, 0.14), 0 2px 8px rgba(40, 29, 15, 0.06);
    white-space: nowrap;
    max-width: calc(100vw - 32px);
    overflow-x: auto;
    scrollbar-width: none;
}
.gallery-chip-bar::-webkit-scrollbar { display: none; }

.gallery-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 999px;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    color: #4a3c32;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}
.gallery-chip:hover {
    background: #efe2cc;
    color: var(--brand-deep);
}
.gallery-chip.active {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 14px rgba(177, 131, 47, 0.3);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 12, 6, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.96);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -46px;
    right: -10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s;
    font-family: Arial, sans-serif;
    font-weight: 300;
}

.lightbox-close:hover {
    transform: scale(1.1);
    color: #eed8b1;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -40px;
        right: 0;
        font-size: 32px;
    }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-section {
    padding: 80px 0;
}
.about-story-section-alt {
    background: linear-gradient(135deg, rgba(255, 253, 249, 0.6), rgba(243, 238, 229, 0.6));
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-story-grid-reverse { direction: rtl; }
.about-story-grid-reverse > * { direction: ltr; }

.about-copy { padding: 10px 0; }

.story-kicker {
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.story-text {
    font-family: Playfair Display, serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.45;
    color: #241915;
    font-weight: 400;
}
.story-text strong {
    color: var(--brand-deep);
    font-weight: 600;
}

.about-visual-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-visual-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(229, 216, 198, 0.4);
    border-radius: 20px;
    pointer-events: none;
}
.about-visual-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.about-visual-card:hover img { transform: scale(1.04); }

/* Clients */
.about-clients-section {
    padding: 40px 0 100px;
}

.clients-head {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 48px;
}
.clients-line {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, var(--brand), transparent);
    flex: 0 0 auto;
    margin-top: 18px;
}
.clients-head h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #16110d;
    margin-bottom: 4px;
}
.clients-head p {
    font-family: Playfair Display, serif;
    color: #c4965a;
    font-size: 1rem;
    font-style: italic;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.client-logo-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 110px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(40, 29, 15, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(40, 29, 15, 0.1);
}

.client-main {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--ink);
}
.client-sub {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}
.client-small {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
}

/* Brand colors */
.client-valueplus .client-main { color: #d62b2b; }
.client-sunburn .client-main { font-style: italic; color: #c4400e; }
.client-sony .client-main { color: #000; }
.client-indianoil .client-main { color: #0070b9; }
.client-hypermart .client-main { color: #1a5e1a; }
.client-galway .client-main { color: #4a2480; }
.client-colors .client-main { color: #cc2b8a; }

/* ============================================================
   PACKAGES PAGE
   ============================================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    align-items: start;
}

.package {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 10px 26px rgba(36, 24, 9, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.package::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--line);
    transition: background 0.3s ease;
}
.package:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package:hover::before { background: linear-gradient(90deg, var(--brand), #c9983d); }

.package.featured {
    border-color: rgba(177, 131, 47, 0.4);
    background: linear-gradient(180deg, #fffdf9, #fdf5e6);
}
.package.featured::before {
    background: linear-gradient(90deg, var(--brand), #c9983d);
}

.package h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    color: var(--ink);
}

.price {
    font-family: Playfair Display, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-deep);
    margin-bottom: 22px;
}

.package ul {
    list-style: none;
    display: grid;
    gap: 11px;
    margin-bottom: 28px;
}
.package ul li {
    font-family: Playfair Display, serif;
    font-size: 1.06rem;
    color: #5a4e44;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.package ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-size: 0.7rem;
    top: 4px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 80px 0;
}

.contact-box .section-head { margin-bottom: 28px; }
.contact-box p {
    font-family: Playfair Display, serif;
    font-size: 1.08rem;
    margin-bottom: 14px;
    color: #5a4e44;
    line-height: 1.6;
}
.contact-box strong {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--brand-deep);
    text-transform: uppercase;
}

.social-line {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c4460e;
    font-family: Playfair Display, serif;
    font-size: 1.05rem;
    transition: opacity 0.2s;
}
.social-link:hover { opacity: 0.75; }
.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-form {
    display: grid;
    gap: 16px;
    background: rgba(255, 251, 245, 0.97);
    border: 1px solid rgba(229, 216, 198, 0.95);
    border-radius: 28px;
    padding: 30px 28px;
    box-shadow: 0 20px 44px rgba(54, 38, 18, 0.09);
}

/* ============================================================
   CALL TO ACTION BANNER
   ============================================================ */
.cta-banner-section {
    padding: 80px 0;
    margin-top: 40px;
}
.cta-banner {
    background: linear-gradient(135deg, #1f1b18, #3b3026);
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid #4a3e32;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-banner h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: #eed8b1;
}
.cta-banner p {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 32px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-intro {
    font-family: Playfair Display, serif;
    font-size: 1.12rem;
    font-style: italic;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 36px;
    line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #1a130d;
    color: rgba(255, 248, 240, 0.75);
    padding: 36px 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-inner p {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(220, 204, 182, 0.6);
}

.helper-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.helper-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: rgba(220, 204, 182, 0.6);
    padding: 5px 12px;
    border: 1px solid rgba(220, 204, 182, 0.15);
    border-radius: 999px;
    transition: color 0.2s, border-color 0.2s;
}
.helper-links a:hover {
    color: #e4cc9e;
    border-color: rgba(220, 204, 182, 0.35);
}

/* ============================================================
   HOME PAGE — PREMIUM UPGRADES
   All rules scoped to .home-page where needed so other pages
   are completely unaffected.
   ============================================================ */

/* ── Glowing CTA Button ── */
.btn-glow {
    position: relative;
    overflow: hidden;
}
.btn-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(177, 131, 47, 0.55);
    animation: btnPulse 2.4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes btnPulse {
    0%   { box-shadow: 0 0 0 0   rgba(177, 131, 47, 0.5); }
    60%  { box-shadow: 0 0 0 14px rgba(177, 131, 47, 0); }
    100% { box-shadow: 0 0 0 0   rgba(177, 131, 47, 0); }
}

/* Hero outline btn — white border on dark hero */
.hero-outline-btn {
    border-color: rgba(238, 216, 177, 0.55) !important;
    color: #f0e8de !important;
}
.hero-outline-btn:hover {
    background: rgba(238, 216, 177, 0.1) !important;
    border-color: rgba(238, 216, 177, 0.85) !important;
}

/* ── Hero Floating Orbs ── */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
    /* Keeps blurred paint inside hero so it can't cause horizontal scroll */
    contain: strict;
}
.hero-orb-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(177,131,47,0.18) 0%, transparent 70%);
    top: -100px; left: -80px;
    animation: orbDrift1 18s ease-in-out infinite alternate;
}
.hero-orb-2 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(201,152,61,0.14) 0%, transparent 70%);
    bottom: 60px; right: -40px;
    animation: orbDrift2 22s ease-in-out infinite alternate;
}
.hero-orb-3 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(238,216,177,0.10) 0%, transparent 70%);
    top: 40%; left: 55%;
    animation: orbDrift3 16s ease-in-out infinite alternate;
}
@keyframes orbDrift1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(60px, 40px) scale(1.12); }
}
@keyframes orbDrift2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-50px, -30px) scale(1.08); }
}
@keyframes orbDrift3 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, -50px) scale(1.15); }
}

/* ── Hero Bokeh Particles ── */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(238, 216, 177, 0.18);
    animation: particleFloat linear infinite;
}
.hero-particles span:nth-child(1)  { width:8px;  height:8px;  left:12%;  top:25%; animation-duration:14s; animation-delay:0s; }
.hero-particles span:nth-child(2)  { width:5px;  height:5px;  left:28%;  top:65%; animation-duration:18s; animation-delay:-4s; }
.hero-particles span:nth-child(3)  { width:10px; height:10px; left:50%;  top:18%; animation-duration:12s; animation-delay:-2s; }
.hero-particles span:nth-child(4)  { width:6px;  height:6px;  left:72%;  top:55%; animation-duration:20s; animation-delay:-8s; }
.hero-particles span:nth-child(5)  { width:4px;  height:4px;  left:85%;  top:30%; animation-duration:16s; animation-delay:-3s; }
.hero-particles span:nth-child(6)  { width:7px;  height:7px;  left:38%;  top:80%; animation-duration:22s; animation-delay:-6s; }
.hero-particles span:nth-child(7)  { width:5px;  height:5px;  left:60%;  top:72%; animation-duration:17s; animation-delay:-1s; }
.hero-particles span:nth-child(8)  { width:9px;  height:9px;  left:20%;  top:45%; animation-duration:15s; animation-delay:-9s; }
@keyframes particleFloat {
    0%   { transform: translateY(0)   scale(1);   opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-120px) scale(0.7); opacity: 0; }
}

/* ── Hero Word Animation ── */
.hero-title { line-height: 1.1; }
.hw {
    display: inline-block;
    opacity: 0;
    transform: translateY(32px);
    animation: wordRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hw:nth-child(1) { animation-delay: 0.35s; }
.hw:nth-child(2) { animation-delay: 0.48s; }
.hw:nth-child(3) { animation-delay: 0.61s; }
.hw:nth-child(4) { animation-delay: 0.74s; }
.hw:nth-child(5) { animation-delay: 0.87s; }
.hw-accent { color: #eed8b1; }
@keyframes wordRise {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Hero Stats Bar ── */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(12, 8, 4, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(177, 131, 47, 0.25);
    padding: 18px 0;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    text-align: center;
}
.hero-stat strong {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
}
.hero-stat span {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--brand);
    font-weight: 700;
    display: inline;
    vertical-align: top;
    margin-top: 2px;
}
.hero-stat p {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(238, 216, 177, 0.7);
    margin-top: 5px;
    font-weight: 500;
}
.hero-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(177, 131, 47, 0.3);
    flex-shrink: 0;
}

/* Adjust hero min-height for the stats bar */
.home-page .hero { min-height: 100vh; padding-bottom: 90px; }

/* ── Hero Eyebrow in hero ── */
.hero-eyebrow {
    animation: heroFadeUp 0.9s ease 0.1s both;
}

/* ════════════════════════════════════════════
   EVENT TYPES SECTION
   ════════════════════════════════════════════ */
.event-types-section { padding: 88px 0; }

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.event-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 20px rgba(40, 29, 15, 0.05);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.32s ease,
                border-color 0.32s ease;
    position: relative;
    overflow: hidden;
}
.event-type-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(177,131,47,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.event-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(40, 29, 15, 0.12);
    border-color: rgba(177, 131, 47, 0.35);
}
.event-type-card:hover::before { opacity: 1; }

.etc-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 24px;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden; /* zoom stays inside */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}
.etc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.event-type-card:hover .etc-photo img {
    transform: scale(1.08); /* Keep the zoom for luxury feel */
}
.event-type-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    color: var(--ink);
    padding: 0 20px;
}
.event-type-card p {
    font-family: Playfair Display, serif;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.55;
    padding: 0 20px 28px;
}

/* ════════════════════════════════════════════
   WHY CHOOSE US — Icon Cards Grid
   ════════════════════════════════════════════ */
.why-section { padding: 88px 0; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.why-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 6px 20px rgba(40, 29, 15, 0.04);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.32s ease,
                border-color 0.32s ease;
    position: relative;
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), #c9983d);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(40, 29, 15, 0.1);
    border-color: rgba(177, 131, 47, 0.3);
}
.why-card:hover::after { opacity: 1; }

.why-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(177,131,47,0.1), rgba(201,152,61,0.06));
    border: 1px solid rgba(177, 131, 47, 0.18);
    border-radius: 14px;
    display: grid;
    place-items: center;
    transition: transform 0.3s ease;
}
.why-card:hover .why-icon { transform: scale(1.08) rotate(3deg); }
.why-icon svg {
    width: 24px;
    height: 24px;
    color: var(--brand);
}
.why-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    color: var(--ink);
}
.why-card p {
    font-family: Playfair Display, serif;
    font-size: 1.02rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ════════════════════════════════════════════
   SERVICE CARDS — Icon Upgrade
   ════════════════════════════════════════════ */
.services-section { padding: 88px 0; }
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 48px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-top: 3px solid transparent;
    border-radius: var(--radius);
    padding: 32px 26px 28px;
    box-shadow: 0 8px 22px rgba(36, 24, 9, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(177, 131, 47, 0.04), transparent);
    transition: height 0.35s ease;
}
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--brand);
}
.service-card:hover::before { height: 100%; }

.sc-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(177,131,47,0.1), rgba(201,152,61,0.06));
    border: 1px solid rgba(177, 131, 47, 0.18);
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}
.service-card:hover .sc-icon {
    transform: scale(1.1) rotate(-4deg);
    background: linear-gradient(135deg, rgba(177,131,47,0.18), rgba(201,152,61,0.12));
}
.sc-icon svg {
    width: 26px;
    height: 26px;
    color: var(--brand);
}
.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    color: var(--ink);
}
.service-card p {
    font-family: Playfair Display, serif;
    font-size: 1.02rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}
.sc-link {
    display: inline-block;
    margin-top: 18px;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--brand);
    text-decoration: none;
    transition: letter-spacing 0.25s ease, color 0.2s ease;
}
.service-card:hover .sc-link {
    letter-spacing: 0.14em;
    color: var(--brand-deep);
}

/* ════════════════════════════════════════════
   PORTFOLIO — Hover Overlay Caption
   ════════════════════════════════════════════ */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 10, 4, 0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}
.portfolio-overlay span {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #eed8b1;
    text-transform: uppercase;
    transform: translateY(8px);
    transition: transform 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover .portfolio-overlay span { transform: translateY(0); }

/* ════════════════════════════════════════════
   PACKAGES — Ribbon + CTA Button
   ════════════════════════════════════════════ */
.pkg-ribbon {
    position: absolute;
    top: 18px;
    right: -32px;
    background: linear-gradient(120deg, var(--brand), #c9983d);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 44px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(177, 131, 47, 0.3);
    white-space: nowrap;
}
.package { position: relative; overflow: hidden; }
.pkg-cta {
    display: block;
    margin-top: 24px;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.76rem;
}

/* ════════════════════════════════════════════
   TESTIMONIALS — Auto Carousel
   ════════════════════════════════════════════ */
.testimonials-section { padding: 88px 0; }

.testi-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
}
.testi-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.testi-slide {
    flex: 0 0 100%;
    padding: 0 8px;
    box-sizing: border-box;
}
.testi-stars {
    font-size: 1.1rem;
    color: var(--brand);
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}
.testi-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: var(--surface);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    flex-shrink: 0;
}
.testi-nav:hover {
    background: #efe2cc;
    border-color: var(--brand);
    transform: scale(1.08);
}
.testi-nav svg { width: 16px; height: 16px; color: var(--ink); }
.testi-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}
.testi-dot.active {
    background: var(--brand);
    transform: scale(1.35);
}

/* ════════════════════════════════════════════
   CTA BANNER — Light Sweep Effect
   ════════════════════════════════════════════ */
.cta-light-sweep {
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(238, 216, 177, 0.07) 50%,
        transparent 60%
    );
    animation: lightSweep 5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes lightSweep {
    0%   { left: -80%; }
    50%, 100%  { left: 130%; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — New Sections
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .event-types-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .event-types-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .etc-icon { width: 50px; height: 50px; }
    .etc-icon svg { width: 22px; height: 22px; }
    .event-type-card { padding: 0; }
    .event-type-card h3 { font-size: 0.82rem; padding: 0 14px; }
    .event-type-card p { font-size: 0.88rem; padding: 0 14px 18px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stat { padding: 0 22px; }
    .hero-stat strong { font-size: 1.4rem; }
}
@media (max-width: 640px) {
    .event-types-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .why-card { padding: 22px 18px; }
    .service-cards-grid { grid-template-columns: 1fr 1fr; }

    /* Hero stats: 2×2 grid on small screens to avoid overflow */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 10px 0;
        width: 100%;
    }
    /* Hide flex-style separators — use the grid border instead */
    .hero-stat-sep { display: none; }
    .hero-stat {
        padding: 10px 12px;
        border-right: 1px solid rgba(177,131,47,0.25);
        border-bottom: 1px solid rgba(177,131,47,0.25);
    }
    .hero-stat:nth-child(2n) { border-right: none; } /* right column — no right border */
    .hero-stat:nth-child(3),
    .hero-stat:nth-child(4) { border-bottom: none; }  /* bottom row — no bottom border */
    .hero-stat strong { font-size: 1.35rem; }
    .hero-stat p { font-size: 0.6rem; letter-spacing: 1.2px; margin-top: 3px; }

    /* Hero orbs hidden on mobile — avoids filter-paint bleed */
    .hero-orb { display: none; }
    .hero-particles { display: none; }

    .testi-nav { width: 36px; height: 36px; }
    .pkg-cta { padding: 10px 16px; }
    .sc-link { font-size: 0.68rem; }
}
@media (max-width: 440px) {
    .event-types-grid { grid-template-columns: repeat(2, 1fr); }
    .service-cards-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .event-types-section,
    .why-section,
    .services-section,
    .testimonials-section { padding: 60px 0; }
}

/* ============================================================
   DECORATIVE DIVIDER
   ============================================================ */
.ornament-divider {
    text-align: center;
    padding: 12px 0;
    color: rgba(177, 131, 47, 0.4);
    font-size: 1.2rem;
    letter-spacing: 16px;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
    /* Show hamburger, hide desktop nav */
    .nav-toggle { display: flex; }
    .nav-links { display: none; }
    .header-consult-btn { display: none; }
    .mobile-nav { display: block; }

    .two-col { gap: 32px; }

    .about-story-grid,
    .about-story-grid-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }
    .about-story-grid-reverse > * { direction: ltr; }
    .about-visual-card img { min-height: 300px; }

    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 200px; 
    }
    .portfolio-wide { grid-column: span 1; }
    .portfolio-tall { grid-row: span 1; }

    .faq-shell {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .home-contact-shell {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .home-contact-cards { max-width: none; }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 60px 0;
    }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
    main section { padding: 60px 0; }

    .home-page .hero {
        min-height: calc(100svh - 110px);
        padding: 28px 0 40px;
    }

    /* Mobile hero uses its own bg image via ::before override */
    .home-page .hero::before {
        background: linear-gradient(rgba(22, 15, 9, 0.58), rgba(22, 15, 9, 0.58)),
                    url("images/hero/mobfrontpage.png") center 30%/cover no-repeat;
        transform: none !important; /* no parallax on mobile */
    }

    .hero-content {
        width: min(94%, 420px);
        padding: 26px 18px 30px;
        background: linear-gradient(180deg, rgba(16, 11, 7, 0.22), rgba(16, 11, 7, 0.38));
        border: 1px solid rgba(255, 244, 228, 0.12);
        border-radius: 24px;
        backdrop-filter: blur(4px);
    }

    .hero h1 {
        font-size: clamp(1.7rem, 8vw, 2.6rem);
        line-height: 1.12;
    }

    .hero-sub { font-size: 0.98rem; }
    .eyebrow { font-size: 0.65rem; letter-spacing: 2.5px; margin-bottom: 14px; }

    .cta-row { flex-direction: column; align-items: center; }
    .cta-row .btn { width: min(100%, 260px); text-align: center; }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 10px;
    }
    .gallery-card,
    .gallery-card-tall,
    .gallery-card-wide,
    .gallery-card-medium {
        grid-column: span 1;
        grid-row: auto;
    }
    .gallery-card img { aspect-ratio: 4/3; height: auto; min-height: 0; }

    .gallery-chip-bar {
        bottom: 14px;
        padding: 8px 10px;
        max-width: calc(100vw - 24px);
    }
    .gallery-chip {
        padding: 6px 12px;
        font-size: 0.65rem;
    }

    .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .story-text { font-size: clamp(1.5rem, 7.5vw, 2.1rem); }

    .team-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 28px 10px;
    }
    .team-grid .team-member:nth-child(-n+3) { grid-column: span 2; }
    .team-grid .team-member:nth-child(n+4)  { grid-column: span 3; }
    .team-photo { width: min(100%, 110px); }

    .faq-copy h2 { font-size: clamp(2rem, 11vw, 3.2rem); }

    .client-love-title { font-size: clamp(2rem, 11vw, 3.2rem); }
    .client-love-card { padding: 26px 20px 22px; border-radius: 24px; }

    .footer-inner { flex-direction: column; text-align: center; }

    .packages-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }

    .section-head h2 { font-size: clamp(1.5rem, 7vw, 2.2rem); }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 420px)
   ============================================================ */
@media (max-width: 420px) {
    .hero h1 { font-size: clamp(1.55rem, 8.5vw, 2.2rem); }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    .team-grid .team-member:nth-child(-n+3),
    .team-grid .team-member:nth-child(n+4) { grid-column: span 1; }
    .team-photo { width: min(100%, 140px); }
}
