*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-burgundy: #7B2D3B;
    --color-burgundy-deep: #5C1F2B;
    --color-burgundy-light: #9A3D4E;
    --color-blush: #F5E6E0;
    --color-blush-light: #FBF6F4;
    --color-blush-mid: #F0D5CC;
    --color-cream: #FFFAF8;
    --color-white: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-muted: #6B6B6B;
    --color-text-light: #9A9A9A;
    --color-line: #E8DDD8;
    --color-line-light: #F0E8E4;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

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

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;
}

/* Background line decoration */
.bg-line {
    position: fixed;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--color-line-light);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 250, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-line-light);
    transition: box-shadow 0.4s var(--ease-smooth);
}

.header.scrolled {
    box-shadow: 0 1px 0 var(--color-line);
}

.header .container {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-burgundy);
    color: var(--color-blush);
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 24px;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-burgundy);
    transition: width 0.3s var(--ease-out);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-burgundy);
    letter-spacing: 0.01em;
    transition: opacity 0.3s var(--ease-smooth);
}

.nav-cta:hover {
    opacity: 0.7;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}

.menu-toggle-line {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--color-text);
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
    transform-origin: center;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--color-text);
    margin-bottom: 28px;
}

.accent-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--color-burgundy);
}

.hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: 40px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 6px;
    transition: all 0.3s var(--ease-smooth);
}

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

.btn-primary:hover {
    background: var(--color-burgundy-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-line);
}

.btn-ghost:hover {
    border-color: var(--color-burgundy);
    color: var(--color-burgundy);
}

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

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 640/720;
    background: var(--color-blush);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: -48px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    z-index: 2;
}

.float-card {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    animation: floatCard 4s ease-in-out infinite;
}

.float-card--1 { animation-delay: 0s; }
.float-card--2 { animation-delay: 1.3s; }
.float-card--3 { animation-delay: 2.6s; }

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

.float-card-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.float-card-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

/* Section shared */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--color-text);
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--color-white);
}

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

.service-card {
    padding: 40px 32px;
    border: 1px solid var(--color-line-light);
    border-radius: 12px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    border-color: var(--color-blush-mid);
    box-shadow: 0 8px 32px rgba(123, 45, 59, 0.08);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-number {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-blush-mid);
    margin-bottom: 20px;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-line);
    border-radius: 10px;
    margin-bottom: 24px;
    color: var(--color-burgundy);
    transition: all 0.3s var(--ease-smooth);
}

.service-card:hover .service-card-icon {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: var(--color-blush);
}

.service-card h3 {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* About */
.about {
    padding: 120px 0;
    background: var(--color-cream);
}

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

.about-image-group {
    position: relative;
}

.about-image-main {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 560/680;
    background: var(--color-blush);
}

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

.about-image-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--color-cream);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.about-line {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    border-left: 1px solid var(--color-burgundy);
    border-top: 1px solid var(--color-burgundy);
    opacity: 0.3;
}

.about-content .section-eyebrow {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.about-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

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

.value-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 16px;
    border-left: 1px solid var(--color-line);
}

.value-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.value-desc {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* CTA Strip */
.cta-strip {
    padding: 80px 0;
    background: var(--color-burgundy);
    text-align: center;
}

.cta-strip-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(20px, 2.5vw, 32px);
    line-height: 1.5;
    color: var(--color-blush);
}

.cta-strip-accent {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    color: var(--color-blush-mid);
    display: block;
    margin-top: 12px;
    letter-spacing: 0.01em;
}

/* Location */
.location {
    padding: 120px 0;
    background: var(--color-white);
}

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

.location-info .section-eyebrow {
    text-align: left;
}

.location-info .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

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

.location-detail svg {
    color: var(--color-burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-detail-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.location-detail-value {
    font-size: 15px;
    color: var(--color-text);
    font-weight: 400;
}

.location-detail-value a {
    color: var(--color-text);
    transition: color 0.3s var(--ease-smooth);
}

.location-detail-value a:hover {
    color: var(--color-burgundy);
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    min-height: 400px;
    background: var(--color-blush);
    border: 1px solid var(--color-line);
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--color-cream);
}

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

.contact-info .section-eyebrow {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li a,
.contact-list li span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text);
    transition: color 0.3s var(--ease-smooth);
}

.contact-list li a:hover {
    color: var(--color-burgundy);
}

.contact-list svg {
    color: var(--color-burgundy);
    flex-shrink: 0;
}

/* Form */
.contact-form-wrapper {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 16px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-blush-light);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    outline: none;
    transition: all 0.3s var(--ease-smooth);
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: var(--color-text-light);
}

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

.form-select {
    cursor: pointer;
    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='%236B6B6B' 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 {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.form-success svg {
    color: var(--color-burgundy);
}

.form-success h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
}

.form-success p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Footer */
.footer {
    padding: 64px 0 32px;
    background: var(--color-text);
    color: var(--color-blush);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    color: var(--color-blush);
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.7;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: color 0.3s var(--ease-smooth);
}

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

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

.footer-contact a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: color 0.3s var(--ease-smooth);
}

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

.footer-contact span {
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 230, 224, 0.1);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-light);
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 48px;
    }

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

    .about-grid,
    .location-grid,
    .contact-grid {
        gap: 48px;
    }

    .floating-cards {
        left: -24px;
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 250, 248, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--color-line);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .nav.open .nav-link {
        font-size: 15px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 48px 0 80px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper {
        aspect-ratio: 4/3;
    }

    .floating-cards {
        display: none;
    }

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

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

    .about-image-group {
        max-width: 480px;
    }

    .about-image-accent {
        right: -16px;
        bottom: -16px;
    }

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

    .location-map {
        aspect-ratio: 16/9;
        min-height: 280px;
    }

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

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .services,
    .about,
    .location,
    .contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}
