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

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F5D5CC;
    --blush-light: #FDE8E2;
    --blush-dark: #E8B4A8;
    --cream: #FFF9F7;
    --dark: #1A1A1A;
    --dark-soft: #2D2D2D;
    --gray: #6B6B6B;
    --gray-light: #9A9A9A;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 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 30px rgba(123, 45, 59, 0.12);
    --shadow-lg: 0 20px 60px rgba(123, 45, 59, 0.15);
    --transition: 0.3s 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 {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ===== DECORATIVE BLOBS ===== */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.blob--blush {
    width: 500px;
    height: 500px;
    background: var(--blush);
    top: -100px;
    right: -100px;
}

.blob--burgundy {
    width: 400px;
    height: 400px;
    background: var(--burgundy);
    bottom: 20%;
    left: -100px;
    opacity: 0.1;
}

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

.nav.scrolled {
    background: rgba(255, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

.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.3rem;
    color: var(--burgundy);
}

.nav__logo-mark {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
}

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

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

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-soft);
    position: relative;
    padding: 4px 0;
}

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

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

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

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--burgundy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-line {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    display: block;
}

.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;
    inset: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
}

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

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

.mobile-menu__cta {
    margin-top: 16px;
    background: var(--burgundy);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

.btn--outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}

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

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

.btn--dark:hover {
    background: var(--dark-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--blush-dark);
}

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

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

.btn--lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* ===== SECTION TAGS ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--blush-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

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

.hero__circle--1 {
    width: 600px;
    height: 600px;
    background: var(--blush-light);
    top: -200px;
    right: -150px;
    opacity: 0.6;
}

.hero__circle--2 {
    width: 300px;
    height: 300px;
    background: var(--blush);
    bottom: 10%;
    left: 5%;
    opacity: 0.4;
}

.hero__rect {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--burgundy);
    border-radius: var(--radius-md);
    top: 20%;
    left: 8%;
    opacity: 0.08;
    transform: rotate(25deg);
}

.hero__triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--blush);
    top: 60%;
    right: 5%;
    opacity: 0.3;
    transform: rotate(-15deg);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 24px;
}

.hero__eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--burgundy);
    display: inline-block;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
}

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

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

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

.hero__trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-soft);
}

.hero__trust-item svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

/* Hero Visual */
.hero__visual {
    position: relative;
}

.hero__image-stack {
    position: relative;
    height: 600px;
}

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

.hero__image--main {
    width: 340px;
    height: 440px;
    top: 0;
    right: 0;
}

.hero__image--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--accent {
    width: 220px;
    height: 280px;
    bottom: 20px;
    left: 0;
    border: 6px solid var(--cream);
}

.hero__image--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    bottom: 200px;
    right: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.hero__badge::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--burgundy);
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.services__header .section-title {
    margin-bottom: 0;
}

.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(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-card--featured .service-card__icon {
    color: var(--blush);
}

.service-card--featured .service-card__title {
    color: var(--white);
}

.service-card--featured .service-card__desc {
    color: rgba(255, 255, 255, 0.85);
}

.service-card--featured .service-card__list li {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card__geometric {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--blush-light);
    border-radius: var(--radius-md);
    transform: rotate(30deg);
    opacity: 0.5;
}

.service-card--featured .service-card__geometric {
    background: rgba(255, 255, 255, 0.1);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    background: var(--blush-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.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;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
}

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

.service-card__list li {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-soft);
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    padding-bottom: 8px;
}

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

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about__bg {
    position: absolute;
    inset: 0;
    background: var(--blush-light);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

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

.about__visual {
    position: relative;
    height: 600px;
}

.about__image-main {
    width: 360px;
    height: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 0;
    left: 0;
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-float {
    width: 240px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: absolute;
    bottom: 0;
    right: 0;
    border: 6px solid var(--blush-light);
}

.about__image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__accent-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--burgundy);
    border-radius: var(--radius-lg);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
    opacity: 0.08;
    z-index: -1;
}

.about__content {
    max-width: 480px;
}

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

.about__stats {
    display: flex;
    gap: 40px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid rgba(123, 45, 59, 0.1);
    border-bottom: 1px solid rgba(123, 45, 59, 0.1);
}

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

.about__stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--burgundy);
}

.about__stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray);
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

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

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

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(123, 45, 59, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery__item-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.gallery__item--wide {
    grid-column: span 6;
}

.gallery__item:not(.gallery__item--wide) {
    grid-column: span 3;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

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

.testimonials__bg-shapes::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(245, 213, 204, 0.08);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.testimonials__bg-shapes::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(245, 213, 204, 0.06);
    border-radius: var(--radius-lg);
    bottom: -80px;
    right: -80px;
    transform: rotate(30deg);
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials .section-tag {
    background: rgba(245, 213, 204, 0.2);
    color: var(--blush);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-title-accent {
    color: var(--blush);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testimonial-card--accent {
    background: var(--white);
    color: var(--dark);
    border-color: transparent;
}

.testimonial-card--accent .testimonial-card__quote {
    color: var(--blush-dark);
}

.testimonial-card--accent .testimonial-card__text {
    color: var(--gray);
}

.testimonial-card--accent .testimonial-card__name {
    color: var(--dark);
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.testimonial-card--accent .testimonial-card__avatar {
    border-color: var(--blush);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--blush-light);
}

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

.cta__bg-shapes::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--blush);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    opacity: 0.5;
}

.cta__bg-shapes::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--burgundy);
    border-radius: var(--radius-md);
    bottom: -50px;
    left: 10%;
    opacity: 0.06;
    transform: rotate(30deg);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta__content {
    flex: 1;
    min-width: 280px;
}

.cta__content .section-tag {
    background: var(--burgundy);
    color: var(--white);
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
}

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

.cta__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 440px;
}

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

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.contact__detail {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact__detail-icon {
    width: 56px;
    height: 56px;
    background: var(--blush-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    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);
}

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

/* Contact Form */
.contact__form-wrapper {
    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.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dark-soft);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(123, 45, 59, 0.12);
    border-radius: var(--radius-sm);
    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-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: var(--radius-sm);
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2E7D32;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    flex-shrink: 0;
    color: #2E7D32;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

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

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

.footer__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer__contact-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contact-mini a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer__nav-title,
.footer__hours-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 20px;
}

.footer__nav-title {
    font-size: 0.75rem;
}

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

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

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

.footer__hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    gap: 16px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 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.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner {
        gap: 40px;
    }

    .hero__image-stack {
        height: 500px;
    }

    .hero__image--main {
        width: 280px;
        height: 380px;
    }

    .hero__image--accent {
        width: 180px;
        height: 240px;
    }

    .about__inner {
        gap: 50px;
    }

    .about__image-main {
        width: 280px;
        height: 400px;
    }

    .about__image-float {
        width: 200px;
        height: 240px;
    }

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

    .service-card {
        padding: 32px;
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__visual {
        order: -1;
    }

    .hero__image-stack {
        height: 360px;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__image--main {
        width: 220px;
        height: 300px;
    }

    .hero__image--accent {
        width: 150px;
        height: 200px;
    }

    .hero__badge {
        right: 0;
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__trust {
        gap: 20px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card--featured {
        order: -1;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__visual {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }

    .about__image-main {
        width: 240px;
        height: 320px;
    }

    .about__image-float {
        width: 160px;
        height: 200px;
    }

    .about__content {
        max-width: 100%;
    }

    .about__stats {
        gap: 24px;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item:not(.gallery__item--wide) {
        grid-column: span 1;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

    .cta__text {
        max-width: 100%;
    }

    .cta__actions {
        justify-content: center;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-wrapper {
        padding: 32px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .hero__image-stack {
        height: 300px;
    }

    .hero__image--main {
        width: 180px;
        height: 250px;
    }

    .hero__image--accent {
        width: 130px;
        height: 170px;
    }

    .hero__badge {
        display: none;
    }

    .services__grid {
        gap: 16px;
    }

    .service-card {
        padding: 28px;
    }

    .about__visual {
        height: 320px;
    }

    .about__image-main {
        width: 200px;
        height: 280px;
    }

    .about__image-float {
        width: 140px;
        height: 180px;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .contact__form-wrapper {
        padding: 24px;
    }
}
