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

:root {
    --plum-900: #500724;
    --plum-800: #831443;
    --plum-700: #9d174d;
    --plum-600: #be185d;
    --plum-100: #fce7f3;
    --plum-50: #fdf4f8;
    --amber-500: #d4a017;
    --amber-400: #ffcc33;
    --amber-100: #fff3cd;
    --amber-50: #fffbeb;
    --cream: #faf8f5;
    --cream-dark: #f5f0eb;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #8a8a8a;
    --line: rgba(131, 20, 67, 0.12);
    --line-strong: rgba(131, 20, 67, 0.25);
    --sidebar-w: 260px;
    --sidebar-w-collapsed: 72px;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── Layout ─── */
.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-w);
    min-height: 100vh;
}

/* ─── Side Navigation ─── */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: var(--plum-900);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1.75rem;
    z-index: 100;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.nav-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 0;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-left: 1px solid transparent;
    padding-left: 1rem;
    margin-left: -1rem;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.95);
    border-left-color: var(--amber-500);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    background: var(--amber-500);
}

.nav-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--amber-400);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    position: fixed;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 200;
    width: 44px;
    height: 44px;
    background: var(--plum-900);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* ─── Sections ─── */
.section {
    padding: 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum-600);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.section-title em {
    font-style: italic;
    color: var(--plum-700);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ─── Hero ─── */
.hero-section {
    padding-top: 4rem;
    min-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum-600);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}

.hero-title em {
    font-style: italic;
    color: var(--plum-700);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
}

.btn-primary {
    background: var(--plum-800);
    color: #fff;
    border: 1px solid var(--plum-800);
}

.btn-primary:hover {
    background: var(--plum-900);
    border-color: var(--plum-900);
}

.btn-outline {
    background: transparent;
    color: var(--plum-800);
    border: 1px solid var(--plum-200, #f9a8d4);
}

.btn-outline:hover {
    background: var(--plum-50);
    border-color: var(--plum-600);
}

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

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.detail-item svg {
    color: var(--plum-600);
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    filter: saturate(0.9);
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.02);
}

.hero-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    color: var(--plum-100);
    opacity: 0.5;
    pointer-events: none;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.divider-diamond {
    color: var(--plum-400, #f472b6);
    opacity: 0.6;
}

/* ─── Services ─── */
.services-section {
    background: #fff;
    max-width: 100%;
    padding-left: calc((100vw - 1200px) / 2 + var(--sidebar-w));
    padding-right: calc((100vw - 1200px) / 2);
}

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

.service-card {
    padding: 2.25rem;
    border: 1px solid var(--line);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-700), var(--amber-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    border-color: var(--line-strong);
    box-shadow: 0 8px 40px rgba(80, 7, 36, 0.06);
}

.service-icon {
    color: var(--plum-700);
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ─── About ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 60%;
    overflow: hidden;
    border: 6px solid var(--cream);
}

.about-img-secondary img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.85);
}

.about-accent-box {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background: var(--plum-800);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    z-index: 2;
}

.accent-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
}

.accent-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.about-content {
    padding-top: 2rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.value-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.value-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--plum-700);
}

.value-line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.value-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

/* ─── Gallery ─── */
.gallery-section {
    background: #fff;
    max-width: 100%;
    padding-left: calc((100vw - 1200px) / 2 + var(--sidebar-w));
    padding-right: calc((100vw - 1200px) / 2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.8);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(80, 7, 36, 0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 1;
    min-height: 320px;
}

.gallery-item--tall {
    grid-column: span 5;
    grid-row: span 2;
    min-height: 660px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--tall) {
    min-height: 300px;
}

/* ─── Contact ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.contact-link {
    font-size: 0.95rem;
    color: var(--plum-700);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--plum-500);
    text-decoration: underline;
}

/* Form */
.contact-form-wrapper {
    background: #fff;
    border: 1px solid var(--line);
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

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

.form-input:focus {
    border-bottom-color: var(--plum-600);
}

.form-select {
    cursor: pointer;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    color: var(--plum-700);
}

.form-success svg {
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.form-success p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ─── Map ─── */
.map-section {
    border-top: 1px solid var(--line);
}

.map-section iframe {
    display: block;
    filter: saturate(0.4) contrast(1.1);
    transition: filter 0.4s ease;
}

.map-section:hover iframe {
    filter: saturate(0.7) contrast(1);
}

/* ─── Footer ─── */
.footer {
    background: var(--plum-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 4rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ─── Animations ─── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .section {
        padding: 4rem 2.5rem;
    }
    
    .services-section,
    .gallery-section {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .hero-grid {
        gap: 2.5rem;
    }
    
    .about-grid,
    .contact-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .side-nav {
        transform: translateX(-100%);
    }
    
    .side-nav.open {
        transform: translateX(0);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .image-frame img {
        height: 400px;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 6vw, 3.5rem);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        max-width: 480px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--large {
        grid-column: span 2;
    }
    
    .gallery-item--tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 280px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3.5rem 1.5rem;
    }
    
    .services-section,
    .gallery-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large {
        grid-column: span 1;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
    
    .about-img-secondary {
        width: 70%;
        right: -1rem;
        bottom: -1rem;
    }
    
    .about-accent-box {
        left: -0.5rem;
        top: -0.75rem;
    }
    
    .value-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    
    .value-line {
        display: none;
    }
    
    .value-desc {
        text-align: left;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem;
    }
    
    .footer {
        padding: 2rem 1.5rem;
    }
    
    .footer-links,
    .footer-contact {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.25rem;
    }
}
