/* ============================================
   THE COLOR LOUNGE — Brand Stylesheet
   Palette: Burgundy (#7B2D3B) + Blush (#E8A0B4)
   Fonts: Playfair Display + Space Grotesk
   ============================================ */

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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #E8A0B4;
    --blush-light: #F2C4D0;
    --blush-pale: #FDF0F4;
    --cream: #FFFAF5;
    --warm-white: #FFF8F6;
    --dark: #1A0A0E;
    --dark-soft: #2D1520;
    --gray: #6B5060;
    --gray-light: #A88090;
    --white: #FFFFFF;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Space Grotesk', system-ui, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.08);
    --shadow-md: 0 8px 32px rgba(123, 45, 59, 0.12);
    --shadow-lg: 0 16px 64px rgba(123, 45, 59, 0.16);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- GEOMETRIC BACKGROUND SHAPES ---------- */
.geo-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo {
    position: absolute;
    opacity: 0.04;
}

.geo--circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--burgundy);
    top: -200px;
    right: -150px;
}

.geo--circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--blush);
    bottom: 20%;
    left: -100px;
}

.geo--rect-1 {
    width: 300px;
    height: 300px;
    background: var(--burgundy);
    top: 40%;
    right: -80px;
    transform: rotate(45deg);
}

.geo--triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 346px solid var(--blush);
    top: 60%;
    left: 5%;
    opacity: 0.03;
}

.geo--dot-grid {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--burgundy) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    top: 30%;
    left: 8%;
    opacity: 0.06;
}

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 250, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--burgundy);
}

.nav__logo-text {
    letter-spacing: -0.02em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--burgundy);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--burgundy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--burgundy-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav__cta::after {
    display: none;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-line {
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    transition: var(--transition);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 250, 245, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--burgundy);
}

.mobile-menu__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background: var(--burgundy);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}

.btn--ghost:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--burgundy);
}

.btn--white:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

/* ---------- SECTION HELPERS ---------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--burgundy);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-title-accent {
    color: var(--burgundy);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.7;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-pale) 50%, var(--cream) 100%);
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--burgundy);
    margin-bottom: 24px;
    background: rgba(123, 45, 59, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
}

.hero__tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--burgundy);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero__title-accent {
    color: var(--burgundy);
    font-style: italic;
    position: relative;
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--blush);
    opacity: 0.5;
    z-index: -1;
    border-radius: 4px;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.hero__stat-divider {
    width: 1px;
    height: 48px;
    background: var(--blush);
}

/* Hero Visual / Collage */
.hero__visual {
    position: relative;
    height: 600px;
}

.hero__collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__img--main {
    width: 320px;
    height: 440px;
    top: 20px;
    right: 40px;
    z-index: 2;
}

.hero__img--accent {
    width: 240px;
    height: 300px;
    top: 80px;
    right: 200px;
    z-index: 1;
    border-radius: var(--radius-xl);
}

.hero__img--floating {
    width: 180px;
    height: 220px;
    bottom: 40px;
    right: 10px;
    z-index: 3;
    border-radius: var(--radius-md);
    border: 4px solid var(--white);
}

.hero__badge {
    position: absolute;
    bottom: 120px;
    left: -20px;
    z-index: 4;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--burgundy);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero__stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--burgundy) 0px,
        var(--burgundy) 40px,
        var(--blush) 40px,
        var(--blush) 80px
    );
}

/* ---------- MARQUEE ---------- */
.marquee {
    background: var(--burgundy);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee__track {
    display: flex;
    gap: 32px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee__track span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--blush-light);
    white-space: nowrap;
}

.marquee__sep {
    color: var(--blush) !important;
    opacity: 0.5;
    font-size: 0.7rem !important;
    letter-spacing: 0 !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- SERVICES ---------- */
.services {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--cream);
}

.services__header {
    text-align: center;
    margin-bottom: 64px;
}

.services__header .section-subtitle {
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(123, 45, 59, 0.06);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card--featured {
    background: linear-gradient(135deg, var(--blush-pale) 0%, var(--white) 100%);
}

.service-card--dark {
    background: var(--burgundy);
    color: var(--white);
}

.service-card--dark .service-card__desc,
.service-card--dark .service-card__title {
    color: var(--white);
}

.service-card--dark .service-card__list li {
    color: var(--blush-light);
    border-color: rgba(232, 160, 180, 0.3);
}

.service-card--dark .service-card__list li::before {
    color: var(--blush);
}

.service-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush));
}

.service-card--dark .service-card__accent {
    background: linear-gradient(90deg, var(--blush), var(--blush-light));
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(123, 45, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--burgundy);
}

.service-card--dark .service-card__icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--blush-light);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card__list li {
    font-size: 0.9rem;
    color: var(--gray);
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(123, 45, 59, 0.06);
    padding-bottom: 10px;
}

.service-card__list li:last-child {
    border-bottom: none;
}

.service-card__list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--burgundy);
    font-size: 0.6rem;
    top: 2px;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--warm-white);
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__visual {
    position: relative;
}

.about__image-stack {
    position: relative;
    height: 580px;
}

.about__img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__img--1 {
    width: 320px;
    height: 420px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about__img--2 {
    width: 260px;
    height: 340px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about__geo {
    position: absolute;
    border-radius: 50%;
}

.about__geo--1 {
    width: 120px;
    height: 120px;
    background: var(--blush);
    opacity: 0.3;
    top: -20px;
    right: 80px;
}

.about__geo--2 {
    width: 80px;
    height: 80px;
    background: var(--burgundy);
    opacity: 0.1;
    bottom: 60px;
    left: 40px;
}

.about__content {
    position: relative;
    z-index: 1;
}

.about__text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0 40px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

.about__feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(123, 45, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--cream);
}

.gallery__header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(26, 10, 14, 0.7));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item--wide {
    grid-column: span 7;
    height: 320px;
}

.gallery__item:not(.gallery__item--wide) {
    height: 320px;
}

/* ---------- CTA ---------- */
.cta {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta__circle {
    position: absolute;
    border-radius: 50%;
}

.cta__circle--1 {
    width: 500px;
    height: 500px;
    background: rgba(232, 160, 180, 0.08);
    top: -200px;
    right: -100px;
}

.cta__circle--2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    bottom: -100px;
    left: -50px;
}

.cta__rect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(232, 160, 180, 0.06);
    bottom: 40px;
    right: 10%;
    transform: rotate(30deg);
}

.cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta .section-tag {
    color: var(--blush-light);
}

.cta .section-tag::before {
    background: var(--blush-light);
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta__title-accent {
    color: var(--blush-light);
    font-style: italic;
}

.cta__text {
    font-size: 1.1rem;
    color: var(--blush-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--warm-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(123, 45, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.contact__detail p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact__detail a {
    color: var(--gray);
    transition: var(--transition);
}

.contact__detail a:hover {
    color: var(--burgundy);
}

.contact__map {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact__form-wrap {
    position: relative;
}

.contact__form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(123, 45, 59, 0.06);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(123, 45, 59, 0.12);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

.form__input::placeholder {
    color: var(--gray-light);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237B2D3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form__success.show {
    display: block;
}

.form__success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(123, 45, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form__success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.form__success p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--dark);
    color: var(--blush-light);
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--blush);
    padding-left: 4px;
}

.footer__hours p,
.footer__contact p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.footer__contact a {
    color: var(--gray-light);
    transition: var(--transition);
}

.footer__contact a:hover {
    color: var(--blush);
}

.footer__bottom {
    border-top: 1px solid rgba(232, 160, 180, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--gray-light);
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }
    
    .hero__visual {
        height: 480px;
    }
    
    .hero__img--main {
        width: 260px;
        height: 360px;
    }
    
    .hero__img--accent {
        width: 200px;
        height: 260px;
    }
    
    .hero__img--floating {
        width: 150px;
        height: 180px;
    }
    
    .about__grid {
        gap: 48px;
    }
    
    .about__image-stack {
        height: 480px;
    }
    
    .about__img--1 {
        width: 260px;
        height: 340px;
    }
    
    .about__img--2 {
        width: 220px;
        height: 280px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero__visual {
        height: 400px;
        order: -1;
    }
    
    .hero__img--main {
        width: 220px;
        height: 300px;
        right: 20px;
    }
    
    .hero__img--accent {
        width: 160px;
        height: 200px;
        right: 140px;
    }
    
    .hero__img--floating {
        width: 130px;
        height: 160px;
        right: 0;
    }
    
    .hero__badge {
        left: 0;
        bottom: 80px;
        font-size: 0.8rem;
        padding: 10px 14px;
    }
    
    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
    
    .hero__stats {
        gap: 24px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .about__visual {
        order: -1;
    }
    
    .about__image-stack {
        height: 380px;
    }
    
    .about__img--1 {
        width: 200px;
        height: 280px;
    }
    
    .about__img--2 {
        width: 180px;
        height: 240px;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery__item--wide {
        grid-column: span 2;
    }
    
    .gallery__item,
    .gallery__item--wide {
        height: 220px;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact__form-card {
        padding: 32px 24px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
    }
    
    .hero__visual {
        height: 320px;
    }
    
    .hero__img--main {
        width: 180px;
        height: 240px;
    }
    
    .hero__img--accent {
        width: 130px;
        height: 170px;
    }
    
    .hero__img--floating {
        width: 110px;
        height: 140px;
    }
    
    .service-card {
        padding: 28px;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--wide {
        grid-column: span 1;
    }
    
    .cta__actions {
        flex-direction: column;
        align-items: center;
    }
}
