/* ============================================
   DESIGN 3: FLORAL OPULENCE
   Floral patterns, warm tones, decorative
   ============================================ */

:root {
    --salmon: #FA8072;
    --salmon-soft: #FFB4AB;
    --salmon-deep: #D65D50;
    --rose: #E8A0BF;
    --blush: #FFF0ED;
    --peach: #FFE8D6;
    --linen: #FFF7F0;
    --ivory: #FFFDF8;
    --warm-bg: linear-gradient(180deg, #FFFDF8 0%, #FFF0ED 50%, #FFFDF8 100%);
    --dark: #2B1B17;
    --brown: #4A3228;
    --text: #5A4A42;
    --text-light: #9A8A82;
    --white: #FFFFFF;
    --gold: #C9A96E;
    /* Secondary accents — yellow & green */
    --accent-yellow: #D4A843;
    --accent-yellow-soft: #F5E6C4;
    --accent-yellow-deep: #B8922E;
    --accent-green: #7BA87B;
    --accent-green-soft: #D4E8D4;
    --accent-green-deep: #5E8E5E;
    --shadow-soft: 0 4px 20px rgba(90, 74, 66, 0.06);
    --shadow-md: 0 10px 40px rgba(90, 74, 66, 0.08);
    --shadow-lg: 0 20px 60px rgba(90, 74, 66, 0.12);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: all 0.4s var(--ease);
    --radius: 24px;
    --radius-sm: 16px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sec {
    padding: 120px 0;
    position: relative;
}

/* Floral Background Pattern — mixed salmon, yellow & green */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg%3E%3Ccircle cx='40' cy='40' r='6' fill='%23FA8072'/%3E%3Ccircle cx='40' cy='28' r='4' fill='%23FA8072'/%3E%3Ccircle cx='40' cy='52' r='4' fill='%23FA8072'/%3E%3Ccircle cx='28' cy='40' r='4' fill='%23FA8072'/%3E%3Ccircle cx='52' cy='40' r='4' fill='%23FA8072'/%3E%3Ccircle cx='120' cy='40' r='5' fill='%23D4A843'/%3E%3Ccircle cx='120' cy='30' r='3' fill='%23D4A843'/%3E%3Ccircle cx='120' cy='50' r='3' fill='%23D4A843'/%3E%3Ccircle cx='40' cy='120' r='5' fill='%237BA87B'/%3E%3Ccircle cx='30' cy='120' r='3' fill='%237BA87B'/%3E%3Ccircle cx='50' cy='120' r='3' fill='%237BA87B'/%3E%3Ccircle cx='120' cy='120' r='5' fill='%23FA8072'/%3E%3C/g%3E%3C/svg%3E");
}

/* -- Preloader -- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--linen);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s, visibility 0.8s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-wrap {
    text-align: center;
}

.loader-petals {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.petal {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--salmon);
    border-radius: 50% 0;
    top: 50%;
    left: 50%;
    transform-origin: -8px 8px;
    animation: petal-spin 2s linear infinite;
}

.p1 {
    animation-delay: 0s;
}

.p2 {
    animation-delay: 0.4s;
}

.p3 {
    animation-delay: 0.8s;
}

.p4 {
    animation-delay: 1.2s;
}

.p5 {
    animation-delay: 1.6s;
}

@keyframes petal-spin {
    0% {
        transform: rotate(0deg) scale(0.5);
        opacity: 0.3;
    }

    50% {
        transform: rotate(180deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: rotate(360deg) scale(0.5);
        opacity: 0.3;
    }
}

.loader-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--brown);
}

/* -- Navbar -- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 4px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(24px);
    padding: 2px 0;
    box-shadow: var(--shadow-soft);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: -20px 0;
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    border-radius: 6px;
}

#navbar.scrolled .logo-img {
    height: 95px;
}

.footer-logo-img {
    height: 130px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

#navbar.scrolled .menu-link {
    color: var(--text);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--salmon);
    transition: var(--transition);
}

.menu-link:hover::after,
.menu-link.active::after {
    width: 100%;
}

.menu-link:hover {
    color: var(--salmon);
}

.menu-cta {
    background: var(--salmon);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    font-weight: 600;
}

.menu-cta::after {
    display: none;
}

.menu-cta:hover {
    background: var(--salmon-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 128, 114, 0.3);
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

#navbar.scrolled .burger span {
    background: var(--brown);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* -- Buttons -- */
.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 50px;
    background: var(--salmon);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(250, 128, 114, 0.3);
}

.btn-fill:hover {
    background: var(--salmon-deep);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(250, 128, 114, 0.4);
}

.btn-fill.full {
    width: 100%;
    justify-content: center;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-line:hover {
    background: var(--white);
    color: var(--brown);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* -- Labels -- */
.label-sm {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--salmon);
    display: block;
    margin-bottom: 10px;
}

.sec-head {
    text-align: center;
    margin-bottom: 60px;
}

.sec-head h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--brown);
    line-height: 1.2;
}

.sec-head h2 i {
    color: var(--salmon);
}

.sec-head p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-top: 12px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* -- HERO -- */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 27, 23, 0.7) 0%, rgba(43, 27, 23, 0.4) 50%, rgba(43, 27, 23, 0.7) 100%);
}

.hero-floral-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='%23FFF' fill-opacity='0.6'%3E%3Ccircle cx='60' cy='60' r='8'/%3E%3Ccircle cx='60' cy='40' r='5'/%3E%3Ccircle cx='60' cy='80' r='5'/%3E%3Ccircle cx='40' cy='60' r='5'/%3E%3Ccircle cx='80' cy='60' r='5'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-body {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 850px;
}

.hero-chip {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(255, 180, 171, 0.4);
    color: var(--salmon-soft);
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border-radius: 30px;
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-h1 i {
    color: var(--salmon-soft);
}

.hero-p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-bottom-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    color: var(--ivory);
    z-index: 3;
}

.hero-bottom-curve svg {
    display: block;
    width: 100%;
    height: auto;
}

/* -- Banner — Holi & Pool Party -- */
.banner-section {
    padding: 60px 0;
    background: var(--ivory);
    position: relative;
    z-index: 4;
}

.banner-card--event {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--dark), var(--brown));
    position: relative;
}

.banner-img-wrap {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.banner-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease);
}

.banner-card--event:hover .banner-img-wrap img {
    transform: scale(1.05);
}

.banner-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 50%, var(--dark) 100%);
    pointer-events: none;
}

.banner-content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.banner-deco {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.15;
}

.banner-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: linear-gradient(135deg, #ff6b35, #ff9a56);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    width: fit-content;
    animation: chipPulse 2s ease-in-out infinite;
}

@keyframes chipPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
    }
}

.banner-content h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.banner-content p strong {
    color: var(--salmon-soft);
}

.banner-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 180, 171, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
}

.banner-highlight i {
    font-size: 1.5rem;
    color: #4fc3f7;
    flex-shrink: 0;
}

.banner-highlight span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.banner-highlight strong {
    color: #4fc3f7;
}

.banner-highlight em {
    color: var(--accent-yellow);
    font-style: normal;
    font-weight: 600;
}

.banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.banner-wa-btn {
    border-color: #25d366;
    color: #25d366;
}

.banner-wa-btn:hover {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}

/* -- About -- */
.about-section {
    background: var(--ivory);
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-photos {
    position: relative;
}

.photo-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.photo-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.photo-main:hover img {
    transform: scale(1.03);
}

.photo-accent {
    position: absolute;
    bottom: -30px;
    right: -24px;
    width: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 4px solid var(--ivory);
    box-shadow: var(--shadow-md);
}

.photo-accent img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.photo-badge {
    position: absolute;
    top: 24px;
    left: -16px;
    background: var(--salmon);
    color: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 6px 20px rgba(250, 128, 114, 0.3);
}

.photo-badge strong {
    font-family: var(--font-display);
    font-size: 2rem;
    display: block;
    line-height: 1;
}

.photo-badge span {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-copy h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--brown);
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-copy h2 i {
    color: var(--salmon);
}

.about-copy>p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.about-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--blush);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brown);
    transition: var(--transition);
}

.about-pills span i {
    color: var(--salmon);
}

/* Alternate pill colors — green for 2nd and 4th pill */
.about-pills span:nth-child(2) {
    background: var(--accent-green-soft);
}

.about-pills span:nth-child(2) i {
    color: var(--accent-green);
}

.about-pills span:nth-child(4) {
    background: var(--accent-yellow-soft);
}

.about-pills span:nth-child(4) i {
    color: var(--accent-yellow);
}

.about-pills span:hover {
    background: var(--salmon);
    color: var(--white);
    transform: translateY(-2px);
}

.about-pills span:nth-child(2):hover {
    background: var(--accent-green);
}

.about-pills span:nth-child(4):hover {
    background: var(--accent-yellow);
}

.about-pills span:hover i {
    color: var(--white);
}

/* -- Services -- */
.services-section {
    background: var(--warm-bg);
}

.srv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.srv-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(250, 128, 114, 0.08);
}

.srv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(250, 128, 114, 0.2);
}

.srv-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.srv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.srv-card:hover .srv-img img {
    transform: scale(1.08);
}

.srv-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--salmon);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(250, 128, 114, 0.3);
}

/* Service badge color accents */
#srv-birthday .srv-badge {
    background: var(--accent-green);
    box-shadow: 0 4px 12px rgba(123, 168, 123, 0.3);
}

#srv-festival .srv-badge {
    background: var(--accent-yellow);
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

.srv-body {
    padding: 24px;
}

.srv-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 8px;
}

.srv-body p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.srv-body a {
    color: var(--salmon);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.srv-body a:hover {
    gap: 12px;
    color: var(--salmon-deep);
}

/* -- Gallery -- */
.gallery-section {
    background: var(--ivory);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.g-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(250, 128, 114, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.g-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.g-item img {
    width: 100%;
    aspect-ratio: 9 / 14.4;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s var(--ease);
}

.g-item:hover img {
    transform: scale(1.05);
}

/* -- Reviews -- */
.reviews-section {
    background: var(--warm-bg);
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
}

.rev-track {
    display: flex;
    transition: transform 0.6s var(--ease);
}

.rev-card {
    min-width: 100%;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(250, 128, 114, 0.1);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.rev-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.rev-top img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid var(--peach);
    object-fit: cover;
}

.rev-top strong {
    display: block;
    font-size: 1rem;
    color: var(--brown);
}

.rev-top span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.rev-card>p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 20px;
}

.rev-stars {
    color: var(--accent-yellow);
    font-size: 1rem;
    letter-spacing: 3px;
}

.rev-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.rev-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--peach);
    background: transparent;
    color: var(--salmon);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rev-nav button:hover {
    background: var(--salmon);
    color: var(--white);
    border-color: var(--salmon);
}

.rev-dots {
    display: flex;
    gap: 6px;
}

.rev-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--peach);
    cursor: pointer;
    transition: var(--transition);
}

.rev-dots .dot.active {
    background: var(--salmon);
    width: 24px;
    border-radius: 4px;
}

/* -- Founder Showcase -- */
.founder-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(250, 128, 114, 0.08);
}

.founder-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.founder-card:hover .founder-photo img {
    transform: scale(1.04);
}

.founder-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(43, 27, 23, 0.6));
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.founder-card:hover .founder-social {
    opacity: 1;
}

.founder-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.founder-social a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.founder-info {
    padding: 40px 40px 40px 0;
}

.founder-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 4px;
}

.founder-role {
    display: inline-block;
    color: var(--salmon);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.founder-info p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.founder-ig-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.founder-ig-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.4);
}

/* -- Farmhouse -- */
.farmhouse-section {
    background: var(--warm-bg);
}

/* Farmhouse Showcase */
.fh-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fh-hero {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.fh-hero img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.fh-hero:hover img {
    transform: scale(1.03);
}

.fh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(43, 27, 23, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
}

.fh-tag {
    display: inline-block;
    padding: 5px 16px;
    background: var(--accent-yellow);
    color: var(--dark);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 12px;
}

.fh-hero-overlay h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--white);
    line-height: 1.2;
}

.fh-hero-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 6px;
}

.fh-hero-overlay p i {
    color: var(--salmon-soft);
    margin-right: 6px;
}

/* Photo grid */
.fh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fh-grid-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.fh-grid-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.fh-grid-item:hover img {
    transform: scale(1.06);
}

.fh-grid-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(43, 27, 23, 0.75));
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Info bar */
.fh-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(250, 128, 114, 0.08);
}

.fh-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fh-amenities span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--blush);
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--brown);
    transition: var(--transition);
}

.fh-amenities span i {
    color: var(--accent-green);
    font-size: 0.85rem;
}

.fh-amenities span:hover {
    background: var(--accent-green-soft);
    transform: translateY(-2px);
}

.fh-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fh-map-btn {
    border-color: var(--peach) !important;
    color: var(--brown) !important;
    padding: 12px 24px !important;
}

.fh-map-btn:hover {
    background: var(--accent-green) !important;
    color: var(--white) !important;
    border-color: var(--accent-green) !important;
}

/* -- FAQ -- */
.faq-section {
    background: var(--ivory);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.faq-intro h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--brown);
    margin-bottom: 12px;
}

.faq-intro h2 i {
    color: var(--salmon);
}

.faq-intro p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.faq-deco {
    font-size: 4rem;
    opacity: 0.4;
    margin-top: 10px;
    filter: hue-rotate(60deg);
}

.faq-item {
    border-bottom: 1px solid var(--peach);
}

.faq-q {
    width: 100%;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--brown);
    text-align: left;
    transition: var(--transition);
}

.faq-q:hover {
    color: var(--salmon);
}

.faq-q i {
    color: var(--salmon);
    font-size: 0.8rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-a p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.92rem;
}

/* -- Calendly -- */
.calendly-section {
    background: var(--warm-bg);
}

.cal-embed {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.cal-embed iframe {
    display: block;
}

/* -- Contact -- */
.contact-section {
    background: var(--ivory);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--brown);
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact-info h2 i {
    color: var(--salmon);
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 28px;
}

.c-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.c-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--blush);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.c-row:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-soft);
}

.c-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--salmon);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.c-row small {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.c-row a,
.c-row p {
    font-weight: 600;
    color: var(--brown);
    font-size: 0.9rem;
}

.c-row a:hover {
    color: var(--salmon);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(250, 128, 114, 0.08);
}

.form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.fg {
    margin-bottom: 0;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--peach);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brown);
    background: var(--ivory);
    transition: var(--transition);
    outline: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--salmon);
    box-shadow: 0 0 0 4px rgba(250, 128, 114, 0.08);
    background: var(--white);
}

.fg textarea {
    margin-bottom: 16px;
    resize: vertical;
}

/* -- Footer -- */
.site-footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-about .logo-word {
    color: var(--white);
}

.ft-about p {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.ft-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.ft-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.ft-social a:hover {
    background: var(--salmon);
    border-color: var(--salmon);
    color: var(--white);
    transform: translateY(-3px);
}

.ft-links h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.ft-links a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    padding: 4px 0;
    transition: var(--transition);
}

.ft-links a:hover {
    color: var(--salmon);
    padding-left: 6px;
}

.ft-links p {
    font-size: 0.88rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-links p i {
    color: var(--accent-green);
}

.ft-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

.ft-bottom i {
    color: var(--salmon);
}

/* -- WhatsApp -- */
.wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: wa-glow 2s infinite;
}

.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes wa-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.08);
    }
}

/* -- Back to top -- */
.btt-btn {
    position: fixed;
    bottom: 28px;
    right: 96px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--salmon);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(250, 128, 114, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btt-btn.visible {
    opacity: 1;
    visibility: visible;
}

.btt-btn:hover {
    transform: translateY(-4px);
    background: var(--salmon-deep);
}

/* -- Animations -- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal:nth-child(5) {
    transition-delay: 0.4s;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
    .hero-h1 {
        font-size: 3.5rem;
    }

    .sec-head h2,
    .about-copy h2,
    .contact-info h2,
    .faq-intro h2 {
        font-size: 2rem;
    }

    .about-flex {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-main img {
        height: 400px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }



    .srv-cards {
        grid-template-columns: 1fr 1fr;
    }

    .fh-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 28px 28px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .menu.active {
        right: 0;
    }

    .menu-link {
        color: var(--text) !important;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        display: block;
        width: 100%;
    }

    .burger {
        display: flex;
    }

    .hero-h1 {
        font-size: 2.6rem;
    }

    .sec {
        padding: 80px 0;
    }

    .sec-head h2 {
        font-size: 2rem;
    }

    .srv-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }


    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-info {
        padding: 32px 24px;
        text-align: center;
    }

    .founder-info h3 {
        font-size: 1.6rem;
    }

    .form-2col {
        grid-template-columns: 1fr;
    }

    .ft-top {
        grid-template-columns: 1fr;
    }

    .banner-card--event {
        grid-template-columns: 1fr;
    }

    .banner-img-wrap {
        min-height: 240px;
    }

    .banner-img-overlay {
        background: linear-gradient(180deg, transparent 40%, var(--dark) 100%);
    }

    .banner-content {
        text-align: center;
        padding: 32px 24px;
        align-items: center;
    }

    .banner-highlight {
        justify-content: center;
        text-align: left;
    }

    .banner-actions {
        justify-content: center;
    }

    .banner-content h2 {
        font-size: 1.6rem;
    }

    .fh-card img {
        height: 300px;
    }

    .rev-card {
        padding: 28px 20px;
    }

    .photo-accent {
        display: none;
    }

    .photo-badge {
        top: auto;
        left: auto;
        right: 10px;
        bottom: -16px;
    }

    .fh-hero img {
        height: 320px;
    }

    .fh-hero-overlay {
        padding: 24px;
    }

    .fh-hero-overlay h3 {
        font-size: 1.8rem;
    }

    .fh-grid {
        grid-template-columns: 1fr;
    }

    .fh-grid-item img {
        height: 200px;
    }

    .fh-info-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 20px;
    }

    .fh-amenities {
        justify-content: center;
    }

    .fh-actions {
        justify-content: center;
    }

    .cal-embed iframe {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-fill,
    .btn-line {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .fh-card img {
        height: 250px;
    }

    .fh-hero img {
        height: 260px;
    }

    .wa-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }

    .btt-btn {
        right: 78px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
}