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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

/* ===== Utility ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

/* ===== Section Shared ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7B2D3B;
    background: linear-gradient(135deg, rgba(123,45,59,0.08), rgba(123,45,59,0.03));
    border: 1px solid rgba(123,45,59,0.15);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 560px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #7B2D3B, #9a3a4a);
    color: #fff;
    box-shadow: 0 4px 20px rgba(123,45,59,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123,45,59,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.7);
    color: #7B2D3B;
    border: 1.5px solid rgba(123,45,59,0.25);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.95);
    border-color: rgba(123,45,59,0.5);
    transform: translateY(-2px);
}

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

/* ===== Navigation ===== */
header.nav-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.nav-scrolled nav {
    background: rgba(254,252,251,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123,45,59,0.08);
    box-shadow: 0 1px 20px rgba(123,45,59,0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7B2D3B, #9a3a4a);
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #7B2D3B;
    background: rgba(123,45,59,0.06);
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #7B2D3B;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(123,45,59,0.07);
    border: 1px solid rgba(123,45,59,0.15);
    transition: all 0.2s ease;
    margin-left: 8px;
}

.nav-cta:hover {
    background: rgba(123,45,59,0.12);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

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

/* Mobile nav */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254,252,251,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.nav-links.mobile-open .nav-link {
    font-size: 1.25rem;
    padding: 12px 24px;
}

.nav-links.mobile-open .nav-cta {
    display: inline-flex;
    margin-left: 0;
    margin-top: 16px;
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, #fefcfb 0%, #fdf0f2 40%, #ffe8ec 100%);
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(255,173,191,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 20% 80%, rgba(123,45,59,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(254,252,251,0.6) 0%, transparent 55%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 48px 60px 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #7B2D3B;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(123,45,59,0.15);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    opacity: 0.7;
}

.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 500;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline-accent {
    background: linear-gradient(135deg, #7B2D3B, #d94f70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #7B2D3B;
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(123,45,59,0.15);
}

.hero-visual {
    position: relative;
    flex: 0 0 auto;
    margin-left: auto;
    padding-right: 24px;
}

.hero-image-wrapper {
    position: relative;
    width: clamp(280px, 38vw, 520px);
}

.hero-image-wrapper img {
    width: 100%;
    height: clamp(400px, 55vw, 650px);
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(123,45,59,0.15);
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(123,45,59,0.12), rgba(255,173,191,0.2));
    border-radius: 20px;
    z-index: -1;
}

/* Hero responsive */
@media (min-width: 1024px) {
    .hero {
        padding-top: 0;
    }
    
    .hero-content {
        padding: 0;
        flex: 0 0 auto;
        max-width: 560px;
    }
    
    .hero-visual {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 48px;
        height: 100vh;
    }
}

@media (max-width: 1023px) {
    .hero {
        flex-direction: column;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        padding: 0 24px;
        text-align: center;
    }
    
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        margin-left: auto;
        margin-right: auto;
        padding-right: 0;
        margin-top: 48px;
    }
    
    .hero-image-wrapper img {
        height: 420px;
    }
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    background: #fff;
}

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

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: linear-gradient(160deg, #fefcfb, #fff5f7);
    border: 1px solid rgba(123,45,59,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7B2D3B, #ffadbf);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(123,45,59,0.1);
    border-color: rgba(123,45,59,0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(123,45,59,0.1), rgba(255,173,191,0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B2D3B;
    margin-bottom: 24px;
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #7B2D3B, #9a3a4a);
    color: #fff;
    transform: scale(1.05);
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b7280;
}

/* ===== About ===== */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff5f7 0%, #fefcfb 100%);
}

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

.about-visual {
    position: relative;
}

.about-image-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(123,45,59,0.12);
}

.about-image-secondary {
    position: absolute;
    bottom: -32px;
    left: -16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(123,45,59,0.15);
    border: 4px solid #fff;
}

.about-image-secondary img {
    width: 220px;
    height: 165px;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    top: 32px;
    right: -16px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(123,45,59,0.12);
    border: 1px solid rgba(123,45,59,0.08);
}

.about-floating-card svg {
    color: #7B2D3B;
    flex-shrink: 0;
}

.about-floating-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.4;
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-value-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(123,45,59,0.08), rgba(255,173,191,0.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B2D3B;
    flex-shrink: 0;
}

.about-value-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.about-value-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* ===== Approach ===== */
.approach {
    padding: 100px 0;
    background: #fff;
}

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

.approach-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.approach-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .approach-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.approach-step {
    position: relative;
    padding: 36px 28px;
    background: linear-gradient(160deg, #fefcfb, #fff5f7);
    border: 1px solid rgba(123,45,59,0.08);
    border-radius: 20px;
    transition: all 0.35s ease;
}

.approach-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(123,45,59,0.08);
    border-color: rgba(123,45,59,0.15);
}

.approach-step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(123,45,59,0.15), rgba(255,173,191,0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.approach-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.approach-step-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b7280;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(160deg, #fdf0f2 0%, #fefcfb 60%, #fff5f7 100%);
}

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

.contact-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #6b7280;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(123,45,59,0.08), rgba(255,173,191,0.12));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B2D3B;
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.6;
}

.contact-detail a {
    color: #7B2D3B;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-detail a:hover {
    color: #9a3a4a;
    text-decoration: underline;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 24px 80px rgba(123,45,59,0.08);
    border: 1px solid rgba(123,45,59,0.06);
}

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

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #1a1a1a;
    background: #fefcfb;
    border: 1.5px solid rgba(123,45,59,0.12);
    border-radius: 12px;
    outline: none;
    transition: all 0.25s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #7B2D3B;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(123,45,59,0.06);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #c4c9d4;
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(123,45,59,0.06), rgba(255,173,191,0.08));
    border: 1px solid rgba(123,45,59,0.15);
    border-radius: 12px;
    margin-top: 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #7B2D3B;
}

.form-success svg {
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }
}

/* ===== Footer ===== */
.footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7B2D3B, #9a3a4a);
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

.footer-links-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffadbf;
}

.footer-contact p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #ffadbf;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.25) !important;
    max-width: 500px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
