/* ===== CSS VARIABLES ===== */
:root {
    --champagne: #C9A96A;
    --champagne-dark: #A9873F;
    --champagne-soft: #F3E9D6;
    --ivory: #FAF5EE;
    --ivory-2: #F1E7D9;
    --mauve: #7A5A63;
    --mauve-dark: #5E434B;
    --blush: #E7C9C4;
    --blush-soft: #F6E7E4;
    --ink: #3A2E30;
    --muted: #9A8A8C;
    --muted-light: #C4B6B4;
    --line: #ECE1D2;
    --line-strong: #E0D2BE;
    --bg: #FFFFFF;
    --surface: #FFFFFF;
    --white: #FFFFFF;
    --dark: #3A2E30;
    --shadow-sm: 0 2px 14px rgba(58, 46, 48, 0.06);
    --shadow-md: 0 16px 40px rgba(58, 46, 48, 0.10);
    --shadow-lg: 0 26px 60px rgba(58, 46, 48, 0.13);
    --shadow-xl: 0 36px 84px rgba(58, 46, 48, 0.17);
    --shadow-champagne: 0 14px 34px rgba(201, 169, 106, 0.36);
    --shadow-mauve: 0 14px 34px rgba(122, 90, 99, 0.28);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: 'Jost', sans-serif;
    color: var(--mauve);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.75;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    line-height: 1.15;
    font-weight: 600;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; background: var(--ivory); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-mark {
    font-size: 2.4rem; margin-bottom: 6px; color: var(--champagne);
    animation: markSpin 2.4s ease-in-out infinite;
}
@keyframes markSpin {
    0%, 100% { transform: rotate(0) scale(1); opacity: 0.7; }
    50% { transform: rotate(180deg) scale(1.15); opacity: 1; }
}
.preloader-text {
    display: block; font-family: 'Great Vibes', cursive;
    font-size: 3rem; color: var(--champagne-dark); line-height: 1;
}
.preloader-sub {
    display: block; font-family: 'Jost', sans-serif; font-weight: 400;
    font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--muted); margin-top: 6px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 22px 0; transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(250, 245, 238, 0.90); backdrop-filter: blur(20px);
    padding: 12px 0; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--line);
}
.nav-container {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, var(--champagne), var(--champagne-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.15rem; box-shadow: var(--shadow-champagne);
}
.logo-text {
    font-family: 'Great Vibes', cursive; font-weight: 400; font-size: 2rem;
    line-height: 1; color: var(--champagne-dark); padding-top: 4px;
}
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a {
    font-size: 0.9rem; font-weight: 400; letter-spacing: 0.3px; color: var(--mauve);
    transition: color var(--transition); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
    background: var(--champagne); transition: width var(--transition); border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--champagne-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    padding: 11px 28px; background: var(--champagne); color: var(--white) !important;
    border-radius: 50px; font-size: 0.86rem; font-weight: 500; letter-spacing: 0.4px;
    transition: all var(--transition);
}
.nav-cta:hover { background: var(--champagne-dark); transform: translateY(-2px); box-shadow: var(--shadow-champagne); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--ink); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 36px; border-radius: 50px; font-family: 'Jost', sans-serif;
    font-size: 0.92rem; font-weight: 500; letter-spacing: 0.4px; cursor: pointer;
    transition: all var(--transition); border: none; white-space: nowrap;
}
.btn-primary { background: var(--champagne); color: var(--white); }
.btn-primary:hover { background: var(--champagne-dark); transform: translateY(-3px); box-shadow: var(--shadow-champagne); }
.btn-accent { background: var(--mauve); color: var(--white); }
.btn-accent:hover { background: var(--mauve-dark); transform: translateY(-3px); box-shadow: var(--shadow-mauve); }
.btn-outline { background: transparent; color: var(--champagne-dark); border: 1px solid var(--line-strong); }
.btn-outline:hover { border-color: var(--champagne); background: var(--ivory); transform: translateY(-3px); }
.btn-white { background: var(--white); color: var(--champagne-dark); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-full { width: 100%; }

/* ===== SECTION STYLES ===== */
.section-tag {
    display: inline-flex; align-items: center; gap: 7px; padding: 7px 18px;
    background: var(--champagne-soft); border-radius: 50px; font-size: 0.72rem;
    font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    color: var(--champagne-dark); margin-bottom: 18px;
}
.section-tag.accent { background: var(--blush-soft); color: var(--mauve); }
.section-tag.light { background: rgba(255,255,255,0.18); color: var(--white); }
.section-header { text-align: center; margin-bottom: 60px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-title {
    font-size: clamp(2.3rem, 4.6vw, 3.5rem); font-weight: 600;
    letter-spacing: 0px; margin-bottom: 16px;
}
.section-title em { font-family: 'Great Vibes', cursive; font-style: normal; font-weight: 400; color: var(--champagne-dark); }
.section-desc { font-size: 1.05rem; font-weight: 300; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ===== HERO ===== */
.hero {
    position: relative; padding: 160px 0 110px;
    background:
        radial-gradient(ellipse at 88% 8%, rgba(201,169,106,0.16) 0%, transparent 52%),
        radial-gradient(ellipse at 6% 92%, rgba(231,201,196,0.20) 0%, transparent 50%),
        linear-gradient(180deg, var(--ivory) 0%, var(--bg) 100%);
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px;
    background: var(--white); border: 1px solid var(--line); border-radius: 50px;
    font-size: 0.8rem; font-weight: 400; color: var(--mauve); margin-bottom: 24px;
    box-shadow: var(--shadow-sm); animation: fadeInUp 0.8s ease-out;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--champagne); box-shadow: 0 0 0 4px rgba(201,169,106,0.22); }
.hero-title {
    font-size: clamp(2.9rem, 5.6vw, 4.6rem); font-weight: 600; letter-spacing: 0px;
    line-height: 1.06; margin-bottom: 22px; animation: fadeInUp 0.8s ease-out 0.15s both;
}
.hero-title em { font-family: 'Great Vibes', cursive; font-style: normal; font-weight: 400; color: var(--champagne-dark); display: inline-block; }
.hero-subtitle {
    font-size: 1.1rem; font-weight: 300; color: var(--muted); max-width: 500px; margin-bottom: 34px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-buttons { display: flex; gap: 14px; margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.45s both; }
.hero-stats { display: flex; gap: 40px; animation: fadeInUp 0.8s ease-out 0.6s both; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; color: var(--ink); line-height: 1; display: inline; }
.hero-stat .hs-suffix { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--champagne); }
.hero-stat .hs-label { font-size: 0.78rem; font-weight: 300; color: var(--muted); margin-top: 8px; letter-spacing: 0.3px; }

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

/* Hero Visual */
.hero-visual { position: relative; animation: fadeInUp 0.9s ease-out 0.4s both; }
.hero-visual-blob {
    position: absolute; inset: -6% -4% -6% 4%;
    background: linear-gradient(135deg, var(--blush), var(--champagne));
    border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%; z-index: 0;
    animation: blobMorph 13s ease-in-out infinite;
}
@keyframes blobMorph {
    0%, 100% { border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%; }
    50% { border-radius: 54% 46% 45% 55% / 46% 55% 45% 54%; }
}
.hero-visual-img { position: relative; z-index: 1; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-visual-img img { width: 100%; height: 520px; object-fit: cover; }
.hero-float-card {
    position: absolute; z-index: 2; background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.hero-float-card.top { top: 34px; left: -26px; animation: floatY 4s ease-in-out infinite; }
.hero-float-card.bottom { bottom: 36px; right: -22px; animation: floatY 4s ease-in-out infinite 1.5s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-float-icon {
    width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.hero-float-icon.champagne { background: var(--champagne-soft); color: var(--champagne-dark); }
.hero-float-icon.mauve { background: var(--blush-soft); color: var(--mauve); }
.hero-float-card .fc-title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.hero-float-card .fc-sub { font-size: 0.74rem; font-weight: 300; color: var(--muted); }

/* ===== FEATURES ===== */
.features { padding: 90px 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
    padding: 36px 26px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-md); transition: all var(--transition); text-align: center;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card-icon {
    width: 62px; height: 62px; border-radius: 50%; background: var(--champagne-soft); color: var(--champagne-dark);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.5rem;
}
.feature-card:nth-child(2) .feature-card-icon,
.feature-card:nth-child(4) .feature-card-icon { background: var(--blush-soft); color: var(--mauve); }
.feature-card h4 { font-size: 1.35rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; font-weight: 300; color: var(--muted); }

/* ===== ABOUT ===== */
.about { padding: 110px 0; background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-badge {
    position: absolute; bottom: -26px; right: -22px; background: var(--white);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 22px 28px; text-align: center;
}
.about-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; color: var(--champagne-dark); line-height: 1; }
.about-badge .lbl { font-size: 0.76rem; font-weight: 300; color: var(--muted); margin-top: 4px; letter-spacing: 0.5px; }
.about-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-list-item { display: flex; gap: 14px; align-items: flex-start; }
.about-check {
    width: 30px; height: 30px; border-radius: 50%; background: var(--champagne-soft); color: var(--champagne-dark);
    display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px;
}
.about-list-item h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 2px; }
.about-list-item p { font-size: 0.9rem; font-weight: 300; color: var(--muted); }

/* ===== SERVICES ===== */
.services { padding: 110px 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 40px 34px; transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--champagne), var(--blush));
    transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 68px; height: 68px; border-radius: 50%; background: var(--champagne-soft); color: var(--champagne-dark);
    display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 22px;
}
.service-card:nth-child(3n+2) .service-icon { background: var(--blush-soft); color: var(--mauve); }
.service-card h3 { font-size: 1.6rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; font-weight: 300; color: var(--muted); margin-bottom: 18px; line-height: 1.7; }
.service-link {
    font-size: 0.84rem; font-weight: 500; letter-spacing: 0.4px; color: var(--champagne-dark); display: inline-flex;
    align-items: center; gap: 6px; transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 12px; }

/* ===== GALLERY ===== */
.gallery { padding: 110px 0; background: var(--ivory); }
.gallery-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.gallery-filter {
    padding: 10px 26px; border-radius: 50px; border: 1px solid var(--line-strong);
    background: var(--white); color: var(--mauve); font-family: 'Jost', sans-serif;
    font-size: 0.84rem; font-weight: 400; letter-spacing: 0.3px; cursor: pointer; transition: all var(--transition);
}
.gallery-filter:hover { border-color: var(--champagne); color: var(--champagne-dark); }
.gallery-filter.active { background: var(--champagne); border-color: var(--champagne); color: var(--white); }
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 22px;
}
.gallery-item {
    position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
    cursor: pointer; transition: opacity 0.4s, transform 0.4s;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.hide { display: none; }
.gallery-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px; color: var(--white);
    background: linear-gradient(180deg, transparent 40%, rgba(58,46,48,0.78) 100%);
    opacity: 0; transform: translateY(12px); transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-overlay .go-cat { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--champagne-soft); margin-bottom: 4px; }
.gallery-overlay .go-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; }

/* ===== STATS BAND ===== */
.stats-band { padding: 76px 0; background: var(--dark); position: relative; overflow: hidden; }
.stats-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(201,169,106,0.30) 0%, transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(231,201,196,0.18) 0%, transparent 45%);
}
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 600; color: var(--white); line-height: 1; }
.stat-suffix { font-family: 'Cormorant Garamond', serif; font-size: 2.3rem; color: var(--champagne); }
.stat-label { display: block; font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.62); margin-top: 8px; letter-spacing: 0.4px; }

/* ===== PROCESS ===== */
.process { padding: 110px 0; background: var(--bg); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step {
    position: relative; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 40px 28px 34px; text-align: center; transition: all var(--transition);
}
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.process-num {
    position: absolute; top: 18px; right: 22px; font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 600; color: var(--ivory-2); line-height: 1;
}
.process-icon {
    width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%;
    background: var(--champagne-soft); color: var(--champagne-dark);
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.process-step:nth-child(even) .process-icon { background: var(--blush-soft); color: var(--mauve); }
.process-step h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; font-weight: 300; color: var(--muted); }

/* ===== TEAM ===== */
.team { padding: 110px 0; background: var(--ivory); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; transition: all var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-photo { height: 300px; position: relative; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-social {
    position: absolute; bottom: 14px; left: 50%; transform: translate(-50%, 20px);
    display: flex; gap: 10px; opacity: 0; transition: all var(--transition);
}
.team-card:hover .team-social { opacity: 1; transform: translate(-50%, 0); }
.team-social a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.95);
    display: flex; align-items: center; justify-content: center; color: var(--champagne-dark); font-size: 0.78rem;
    transition: all var(--transition);
}
.team-social a:hover { background: var(--champagne); color: #fff; }
.team-info { padding: 24px; text-align: center; }
.team-info h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 0.74rem; color: var(--champagne-dark); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.team-info p { font-size: 0.86rem; font-weight: 300; color: var(--muted); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 110px 0; background: var(--bg); }
.testimonials-slider { max-width: 860px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
    min-width: 100%; padding: 54px; background: var(--ivory); border: 1px solid var(--line);
    border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm);
}
.testimonial-stars { font-size: 1.1rem; color: var(--champagne); letter-spacing: 4px; margin-bottom: 22px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-style: italic; font-weight: 500; color: var(--ink); line-height: 1.55; margin-bottom: 30px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar {
    width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.4rem;
}
.testimonial-author h4 { font-size: 1.15rem; font-weight: 600; }
.testimonial-author span { font-size: 0.82rem; font-weight: 300; color: var(--muted); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.testimonial-btn {
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--white);
    font-size: 1.05rem; color: var(--mauve); cursor: pointer; transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.testimonial-btn:hover { border-color: var(--champagne); background: var(--champagne); color: var(--white); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); cursor: pointer; transition: all var(--transition); }
.testimonial-dots .dot.active { background: var(--champagne); width: 30px; border-radius: 5px; }

/* ===== CONTACT / QUOTE ===== */
.contact { padding: 110px 0; background: var(--ivory); }
.contact-wrap {
    display: grid; grid-template-columns: 0.9fr 1.1fr; background: var(--surface);
    border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.contact-side {
    position: relative; padding: 56px 44px; color: var(--white);
    background: linear-gradient(150deg, var(--mauve) 0%, var(--mauve-dark) 100%);
    display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.contact-side::before {
    content: ''; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px;
    border-radius: 50%; background: rgba(255,255,255,0.07);
}
.contact-side::after {
    content: ''; position: absolute; bottom: -80px; left: -50px; width: 200px; height: 200px;
    border-radius: 50%; background: rgba(201,169,106,0.16);
}
.contact-side .cs-inner { position: relative; z-index: 2; }
.contact-side .section-tag { background: rgba(255,255,255,0.16); color: #fff; }
.contact-side h2 { color: var(--white); font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 16px; }
.contact-side h2 em { font-family: 'Great Vibes', cursive; font-style: normal; font-weight: 400; color: var(--champagne-soft); }
.contact-side > .cs-inner > p { opacity: 0.9; margin-bottom: 28px; font-size: 0.98rem; font-weight: 300; }
.contact-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.contact-benefits li { display: flex; align-items: center; gap: 12px; font-size: 0.93rem; font-weight: 300; }
.contact-benefits li span {
    width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.16);
    display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; color: var(--champagne-soft);
}
.contact-direct { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.cd-item { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; font-weight: 300; }
.cd-icon { color: var(--champagne-soft); font-size: 1rem; }
.contact-form { padding: 52px 48px; }
.contact-form h3 { font-size: 1.8rem; font-weight: 600; margin-bottom: 6px; }
.contact-form > p { font-size: 0.9rem; font-weight: 300; color: var(--muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { display: block; font-size: 0.76rem; font-weight: 500; letter-spacing: 0.4px; color: var(--mauve); margin-bottom: 7px; padding-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300; color: var(--ink); background: var(--ivory);
    transition: all var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--champagne); background: var(--white); box-shadow: 0 0 0 4px rgba(201,169,106,0.14);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A9873F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
}
.contact-form .btn { margin-top: 10px; padding: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--muted-light); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--champagne); }
.footer-brand p { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
    padding: 8px 16px; background: rgba(255,255,255,0.07); border-radius: 50px; font-size: 0.76rem;
    font-weight: 400; color: rgba(255,255,255,0.7); transition: all var(--transition);
}
.social-link:hover { background: var(--champagne); color: var(--white); }
.footer-links h4 { color: var(--white); font-size: 1.25rem; font-weight: 600; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--champagne); }
.footer-newsletter h4 { color: var(--white); font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.footer-newsletter p { font-size: 0.86rem; font-weight: 300; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.newsletter-form { display: flex; }
.newsletter-form input {
    flex: 1; padding: 12px 16px; border: none; border-radius: 50px 0 0 50px; background: rgba(255,255,255,0.09);
    color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 300; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
    padding: 12px 20px; background: var(--champagne); color: var(--white); border: none;
    border-radius: 0 50px 50px 0; cursor: pointer; font-size: 1rem; transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--champagne-dark); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.4); }

/* ===== BACK TO TOP & WHATSAPP ===== */
.back-to-top {
    position: fixed; bottom: 100px; right: 30px; width: 48px; height: 48px; background: var(--champagne);
    color: var(--white); border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
    opacity: 0; visibility: hidden; transition: all var(--transition); box-shadow: var(--shadow-md);
    z-index: 100; display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--champagne-dark); transform: translateY(-3px); }
.whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; gap: 8px;
    padding: 14px 24px; background: #25D366; color: var(--white); border-radius: 50px; font-size: 0.84rem;
    font-weight: 500; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); z-index: 100; transition: all var(--transition);
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4); }
.whatsapp-icon { font-size: 1.2rem; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { max-width: 540px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 2; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(250,245,238,0.98); backdrop-filter: blur(20px); padding: 24px; gap: 16px;
        box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
    }
    .hero { padding: 140px 0 90px; }
    .hero-float-card.top { left: 6px; }
    .hero-float-card.bottom { right: 6px; }
    .hero-stats { gap: 28px; }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-item.wide { grid-column: span 1; }
    .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .process-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 52px; }
    .about-img-main img { height: 380px; }
    .about-badge { right: 16px; bottom: -20px; }
    .contact-side { padding: 44px 32px; }
    .contact-form { padding: 40px 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .testimonial-card { padding: 36px 24px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.7rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px 32px; }
    .stats-grid { grid-template-columns: 1fr; }
    .whatsapp-text { display: none; }
    .testimonial-text { font-size: 1.3rem; }
}
