:root {
    --charcoal: #1A1A1A;
    --cream: #F7F3EB;
    --champagne: #E6DCC7;
    --olive: #8A8F6A;
    --gold: #C4A46F;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Navigation ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(247, 243, 235, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

.mobile-menu-close-wrapper {
    display: none;
}

.mobile-menu-close {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--charcoal);
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 1;
    z-index: 1002;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* ===== Buttons ===== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--charcoal);
    background: var(--charcoal);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 0;
}

.btn-primary:hover,
.btn-secondary:hover {
    color: var(--charcoal);
    border-color: var(--gold);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--olive) 100%);
    background-size: cover;
    background-position: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%231A1A1A" opacity="0.4"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 8rem;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.hero-underline {
    width: 120px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 3rem;
    position: relative;
}

.hero-underline::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--gold);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ===== Philosophy Section ===== */
.philosophy-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.philosophy-text-block {
    padding-left: 2rem;
}

.philosophy-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.philosophy-image {
    position: relative;
}

.philosophy-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

/* ===== Signature Section ===== */
.signature-section {
    padding: 10rem 4rem;
    background: var(--cream);
}

.signature-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.signature-images {
    position: relative;
}

.image-collage {
    position: relative;
    height: 700px;
}

.collage-img {
    position: absolute;
    border: 2px solid var(--white);
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.15);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.collage-img.img-1 {
    width: 60%;
    height: 50%;
    top: 0;
    left: 0;
    z-index: 3;
}

.collage-img.img-2 {
    width: 55%;
    height: 45%;
    top: 20%;
    right: 0;
    z-index: 2;
}

.collage-img.img-3 {
    width: 50%;
    height: 40%;
    bottom: 0;
    left: 15%;
    z-index: 1;
}

.signature-content {
    padding-right: 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.gold-accent-line {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.signature-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.approach-items {
    margin-top: 2rem;
}

.approach-item {
    margin-bottom: 2rem;
}

.approach-item .gold-accent {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.approach-item p {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* ===== Services Preview ===== */
.services-preview {
    padding: 10rem 4rem;
    background: var(--white);
}

.services-preview-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-centered {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 5rem;
    color: var(--charcoal);
}

.services-grid-diagonal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.service-card {
    padding: 3rem;
    background: var(--cream);
    border: 1px solid rgba(26, 26, 26, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(196, 164, 111, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.1);
}

.service-card.card-1 {
    transform: rotate(-1deg);
}

.service-card.card-2 {
    transform: rotate(1deg);
    margin-top: 3rem;
}

.service-card.card-3 {
    transform: rotate(1deg);
}

.service-card.card-4 {
    transform: rotate(-1deg);
    margin-top: -2rem;
}

.service-card:hover.card-1,
.service-card:hover.card-2,
.service-card:hover.card-3,
.service-card:hover.card-4 {
    transform: rotate(0deg) translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.service-card p {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
}

.services-link {
    text-align: center;
}

/* ===== Featured Projects ===== */
.featured-projects {
    padding: 10rem 4rem;
    background: var(--charcoal);
    color: var(--white);
}

.projects-header {
    max-width: 1400px;
    margin: 0 auto 5rem;
}

.projects-header .section-title {
    color: var(--white);
}

.projects-carousel {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
}

.projects-carousel::-webkit-scrollbar {
    height: 4px;
}

.projects-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.projects-carousel::-webkit-scrollbar-thumb {
    background: var(--gold);
}

.project-slide {
    min-width: 500px;
    scroll-snap-align: start;
    position: relative;
}

.project-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 2px solid var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
}

.project-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.project-info p {
    font-size: 0.9rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Project Image Placeholders */

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--charcoal);
    overflow: hidden;
}

.testimonials-container {
    max-width: 100%;
}

.testimonial-strip {
    display: flex;
    gap: 4rem;
    animation: scroll-testimonials 30s linear infinite;
    white-space: nowrap;
}

.testimonial-quote {
    min-width: 500px;
    padding: 2rem;
    flex-shrink: 0;
}

.testimonial-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.6;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-quote span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    white-space: normal;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 10rem 4rem;
    background: var(--white);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
    color: var(--charcoal);
    line-height: 1.3;
}

/* ===== Footer ===== */
.main-footer {
    background: var(--charcoal);
    color: var(--white);
    padding:  2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-menu a:hover {
    color: var(--gold);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}


.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ===== Page Hero (Services, Portfolio, About, Contact) ===== */
.page-hero {
    padding: 12rem 4rem 6rem;
    background: var(--cream);
    margin-top: 80px;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.page-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--charcoal);
    opacity: 0.8;
}

/* ===== Services Page ===== */
.service-banner {
    padding: 8rem 4rem;
}

.service-banner:nth-child(even) {
    background: var(--cream);
}

.service-banner:nth-child(odd) {
    background: var(--white);
}

.service-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.service-banner-container.reverse {
    direction: rtl;
}

.service-banner-container.reverse > * {
    direction: ltr;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    font-size: 1rem;
    line-height: 2;
    color: var(--charcoal);
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.service-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

/* ===== Portfolio Page ===== */
.portfolio-grid-section {
    padding: 6rem 4rem;
    background: var(--white);
}

.portfolio-masonry {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--white);
    background: var(--cream);
    aspect-ratio: 4/3;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Portfolio Image Placeholders */

/* Project Modal */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.95);
    z-index: 2000;
    overflow-y: auto;
}

.project-modal.active {
    display: block;
}

.modal-content {
    max-width: 1200px;
    margin: 4rem auto;
    background: var(--white);
    padding: 3rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--charcoal);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.modal-main-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--olive) 100%);
    margin-bottom: 1rem;
}

.modal-gallery {
    display: flex;
    gap: 1rem;
}

.modal-thumb {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--olive) 100%);
    cursor: pointer;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.modal-location {
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
}

.detail-label {
    font-weight: 600;
    min-width: 80px;
}

/* ===== About Page ===== */
.editorial-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.editorial-portrait {
    position: sticky;
    top: 120px;
}

@media (max-width: 320px) {
    .editorial-portrait {
        position: static;
    }
}

.portrait-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.editorial-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.quote-section {
    padding: 10rem 4rem;
    background: var(--cream);
    text-align: center;
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
}

.oversized-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--charcoal);
    opacity: 0.7;
}

.timeline-section {
    padding: 10rem 4rem;
    background: var(--white);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 3rem;
    margin-top: 4rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-dot {
    position: absolute;
    left: -2.75rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
}

.values-section {
    padding: 10rem 4rem;
    background: var(--cream);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    padding: 3rem;
    background: var(--white);
    border: 1px solid rgba(26, 26, 26, 0.1);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.value-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.8;
}

/* ===== Contact Page ===== */
.contact-hero {
    background: var(--champagne);
}

@media (max-width: 320px) {
    .contact-hero {
        padding: 7rem 0.75rem 2.5rem;
    }
}

.contact-section {
    padding: 8rem 4rem;
    background: var(--champagne);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 4rem;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.form-header {
    margin-bottom: 3rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.form-subtitle {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(26, 26, 26, 0.2);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    align-self: flex-start;
    margin-top: 1rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    background: var(--white);
    padding: 3rem;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--charcoal);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--gold);
    min-width: 30px;
}

.info-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.info-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.8;
}

.map-wrapper {
    background: var(--white);
    border: 1px solid rgba(26, 26, 26, 0.1);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--champagne) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.2rem;
}

.map-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* ===== Animations ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .nav-container,
    .hero-content,
    .philosophy-container,
    .signature-container,
    .service-banner-container,
    .editorial-container,
    .contact-container {
        padding: 0 2rem;
    }

    .services-grid-diagonal {
        grid-template-columns: 1fr;
    }

    .service-card.card-2,
    .service-card.card-4 {
        margin-top: 0;
    }

    .portfolio-masonry {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        aspect-ratio: 4/3;
    }

    .portfolio-item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 3rem 1.5rem 1.5rem;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(26, 26, 26, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-close-wrapper {
        display: block;
        position: relative;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .mobile-menu-close {
        display: block;
    }

    .nav-menu li:not(.mobile-menu-close-wrapper) {
        width: 100%;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    }

    .nav-menu li:not(.mobile-menu-close-wrapper):last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        font-size: 0.95rem;
        padding: 0.3rem 0;
        letter-spacing: 0.08em;
    }

    .hero-content {
        padding: 0 2rem;
    }

    .philosophy-container,
    .signature-container,
    .service-banner-container,
    .editorial-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-collage {
        height: 400px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-strip {
        gap: 3rem;
    }

    .testimonial-quote {
        min-width: 280px;
        padding: 1.5rem;
    }

    .testimonial-quote p {
        font-size: 1.4rem;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .hero-content,
    section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .project-slide {
        min-width: 300px;
    }
}

@media (max-width: 320px) {
    .nav-container {
        padding: 0 0.75rem;
    }

    .nav-logo a {
        font-size: 1rem;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .mobile-menu-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }

    .nav-menu {
        padding: 2.5rem 0.75rem 0.75rem;
    }

    .nav-menu li:not(.mobile-menu-close-wrapper) {
        padding: 0.4rem 0;
    }

    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.2rem 0;
        letter-spacing: 0.05em;
    }

    .mobile-menu-close-wrapper {
        margin-bottom: 0.3rem;
    }

    .hero-content {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-underline {
        width: 80px;
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .section-title,
    .section-title-centered {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .philosophy-section,
    .signature-section,
    .services-preview,
    .featured-projects,
    .testimonials-section,
    .cta-section,
    .editorial-section,
    .quote-section,
    .timeline-section,
    .values-section,
    .contact-section,
    .service-banner,
    .legal-section,
    .process-section,
    .inspiration-section,
    .quality-section,
    .experience-section,
    .collaboration-section,
    .mission-section,
    .expertise-section,
    .commitment-section,
    .service-benefits-section,
    .service-process-section,
    .portfolio-showcase-section,
    .portfolio-stats-section,
    .contact-options-section,
    .contact-location-section {
        padding: 3rem 0.75rem;
    }

    .editorial-portrait {
        position: static;
    }

    .editorial-container {
        gap: 2rem;
    }

    .portrait-image {
        height: 300px;
    }

    .editorial-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .bio-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .quote-section {
        padding: 4rem 0.75rem;
    }

    .oversized-quote {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .quote-author {
        font-size: 0.85rem;
    }

    .timeline-section {
        padding: 4rem 0.75rem;
    }

    .timeline {
        padding-left: 2rem;
        margin-top: 2rem;
    }

    .timeline-item {
        margin-bottom: 2.5rem;
    }

    .timeline-dot {
        left: -2.25rem;
        width: 12px;
        height: 12px;
    }

    .timeline-year {
        font-size: 1.5rem;
    }

    .timeline-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .values-section {
        padding: 4rem 0.75rem;
    }

    .contact-section {
        padding: 2.5rem 0.75rem;
        overflow-x: hidden;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form-wrapper {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .form-header {
        margin-bottom: 1.5rem;
    }

    .form-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .form-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.35rem;
        letter-spacing: 0.08em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.85rem;
        padding: 0.65rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .form-group textarea {
        min-height: 100px;
        max-height: 200px;
    }

    .form-submit {
        width: 100%;
        align-self: stretch;
        margin-top: 0.5rem;
    }

    .contact-info-wrapper {
        gap: 1.5rem;
        width: 100%;
    }

    .contact-info {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .info-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }

    .info-item {
        margin-bottom: 1.25rem;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .info-icon {
        font-size: 1.1rem;
        min-width: 20px;
        flex-shrink: 0;
    }

    .info-content {
        flex: 1;
        min-width: 0;
    }

    .info-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .info-content p {
        font-size: 0.8rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .contact-options-section {
        padding: 3rem 0.75rem;
    }

    .contact-options-container {
        padding: 0;
    }

    .section-title-centered {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-option {
        padding: 1rem 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .contact-option-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .contact-option h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .contact-option p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
        word-wrap: break-word;
    }

    .contact-option-note {
        font-size: 0.7rem;
    }

    .contact-location-section {
        padding: 3rem 0.75rem;
    }

    .contact-location-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .location-content-left {
        order: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .location-image-right {
        order: 1;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .gold-accent-line {
        width: 50px;
        margin-bottom: 1rem;
    }

    .location-text {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .location-details {
        gap: 1.25rem;
    }

    .location-detail-item {
        margin-bottom: 0.75rem;
    }

    .location-detail-item strong {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        display: block;
    }

    .location-detail-item p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .location-img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

    .page-hero {
        padding: 7rem 0.75rem 2.5rem;
        margin-top: 70px;
    }

    .page-hero-content {
        padding: 0;
        max-width: 100%;
    }

    .contact-hero {
        padding: 7rem 0.75rem 2.5rem;
    }

    .page-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .page-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .form-group select {
        font-size: 0.85rem;
        padding: 0.65rem;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231A1A1A' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.65rem center;
        background-size: 12px;
        padding-right: 2.5rem;
    }

    .contact-info-wrapper {
        margin-top: 0;
    }

    .info-content p br {
        display: block;
        content: "";
        margin-top: 0.25rem;
    }

    .editorial-bio {
        padding: 0;
    }

    .expertise-areas {
        gap: 1.5rem;
    }

    .expertise-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .area-icon {
        font-size: 1.5rem;
    }

    .expertise-area h3 {
        font-size: 1.2rem;
    }

    .expertise-area p {
        font-size: 0.85rem;
    }

    .mission-content {
        margin-bottom: 2rem;
    }

    .mission-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .commitment-card {
        padding: 1.5rem 1rem;
    }

    .commitment-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .commitment-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .commitment-card p {
        font-size: 0.85rem;
    }

    .philosophy-statement {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
        width: 100%;
    }

    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-strip {
        gap: 2rem;
    }

    .testimonial-quote {
        min-width: 250px;
        padding: 1rem 0.75rem;
        flex-shrink: 0;
    }

    .testimonial-quote p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .testimonial-quote span {
        font-size: 0.7rem;
        display: block;
    }

    .project-slide {
        min-width: 200px;
    }

    .project-image {
        height: 400px;
    }

    .footer-container {
        padding: 1.5rem 0.75rem;
        gap: 1.5rem;
    }

    .footer-logo a {
        font-size: 1.2rem;
    }

    .footer-menu {
        font-size: 0.75rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .footer-bottom {
        padding: 1rem 0.75rem;
        font-size: 0.7rem;
    }

    .legal-section {
        padding: 3rem 0.75rem;
    }

    .legal-heading {
        font-size: 1.3rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .legal-subheading {
        font-size: 1.2rem;
    }

    .legal-content p,
    .legal-list li {
        font-size: 0.85rem;
    }

    .legal-intro {
        font-size: 1rem;
    }

    .process-img,
    .inspiration-img,
    .expertise-img,
    .service-process-img,
    .showcase-img,
    .location-img,
    .experience-img,
    .mission-img {
        height: 250px;
    }

    .quality-icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .stat-number,
    .portfolio-stat-number {
        font-size: 2rem;
    }

    .stat-label,
    .portfolio-stat-label {
        font-size: 0.85rem;
    }

    .process-step h3,
    .expertise-area h3,
    .commitment-card h3,
    .benefit-item h3,
    .contact-option h3 {
        font-size: 1.2rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .collaboration-images,
    .mission-image-grid {
        gap: 1rem;
    }

    .collab-img,
    .mission-img {
        height: 200px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .info-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-icon {
        font-size: 1.2rem;
    }

    .info-content h3 {
        font-size: 1rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }

    .philosophy-container,
    .signature-container,
    .service-banner-container,
    .editorial-container,
    .contact-container,
    .process-container,
    .inspiration-container,
    .expertise-container,
    .contact-location-container,
    .portfolio-showcase-container {
        gap: 2rem;
    }

    .philosophy-img,
    .portrait-image {
        height: 300px;
    }

    .image-collage {
        height: 300px;
    }

    .collage-img.img-1,
    .collage-img.img-2,
    .collage-img.img-3 {
        border-width: 1px;
    }

    .services-grid-diagonal {
        gap: 1.5rem;
    }

    .service-card {
        transform: none !important;
        margin-top: 0 !important;
    }

    .service-card:hover {
        transform: translateY(-3px) !important;
    }

    .projects-carousel {
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .project-slide {
        min-width: 180px;
    }

    .project-image {
        height: 300px;
    }

    .approach-items {
        margin-top: 1.5rem;
    }

    .approach-item {
        margin-bottom: 1.5rem;
    }

    .approach-item .gold-accent {
        font-size: 1.1rem;
    }

    .approach-item p {
        font-size: 0.85rem;
    }

    .values-grid,
    .quality-grid,
    .benefits-grid,
    .portfolio-stats-grid,
    .contact-options-grid,
    .commitment-grid,
    .experience-stats {
        gap: 1.5rem;
    }

    .value-card,
    .commitment-card,
    .contact-option {
        padding: 1.5rem 1rem;
    }

    .value-icon,
    .commitment-icon,
    .contact-option-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .value-title,
    .commitment-card h3,
    .contact-option h3 {
        font-size: 1.2rem;
    }

    .value-text,
    .commitment-card p,
    .contact-option p {
        font-size: 0.85rem;
    }

    .process-steps,
    .expertise-areas,
    .showcase-features,
    .inspiration-features {
        gap: 1.5rem;
    }

    .process-step,
    .expertise-area {
        gap: 1rem;
    }

    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .process-step h3,
    .expertise-area h3 {
        font-size: 1.2rem;
    }

    .process-step p,
    .expertise-area p {
        font-size: 0.85rem;
    }

    .area-icon,
    .showcase-icon,
    .feature-icon {
        font-size: 1.2rem;
    }

    .inspiration-feature,
    .showcase-feature {
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .collaboration-images,
    .mission-image-grid {
        gap: 0.75rem;
    }

    .collab-img,
    .mission-img {
        height: 180px;
    }

    .location-details {
        gap: 1.5rem;
    }

    .location-detail-item strong {
        font-size: 1rem;
    }

    .location-detail-item p {
        font-size: 0.85rem;
    }

    .portfolio-masonry {
        gap: 1rem;
    }

    .portfolio-item {
        aspect-ratio: 1/1;
    }

    .portfolio-overlay {
        padding: 1rem;
    }

    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }

    .portfolio-overlay p {
        font-size: 0.75rem;
    }

    .quote-container {
        padding: 0 0.75rem;
    }

    .oversized-quote {
        font-size: 1.5rem;
    }

    .quote-author {
        font-size: 0.85rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-item {
        margin-bottom: 2.5rem;
    }

    .timeline-year {
        font-size: 1.5rem;
    }

    .timeline-text {
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .form-subtitle {
        font-size: 0.85rem;
    }

    .info-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .info-item {
        margin-bottom: 2rem;
    }

    .gold-accent-line {
        width: 60px;
        margin-bottom: 1.5rem;
    }

    .subsection-title {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .signature-text,
    .service-description,
    .bio-text,
    .process-text,
    .inspiration-text,
    .expertise-text,
    .location-text,
    .collaboration-text,
    .mission-text,
    .experience-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .service-number {
        font-size: 4rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-features {
        margin-bottom: 2rem;
    }

    .service-features li {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .thank-you-section {
        padding: 4rem 0.75rem;
        min-height: 50vh;
    }

    .thank-you-content {
        padding: 1.5rem 0.75rem;
    }

    .thank-you-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .thank-you-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .thank-you-text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .thank-you-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }
}

.thank-you-section {
    padding: 8rem 4rem;
    background: var(--white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-content {
    padding: 3rem 2rem;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2.5rem;
    font-weight: bold;
}

.thank-you-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.thank-you-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 6rem 2rem;
    }

    .thank-you-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

    .thank-you-actions {
        flex-direction: column;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
    }
}

/* ===== Legal Pages ===== */
.legal-section {
    padding: 6rem 4rem;
    background: var(--white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    line-height: 1.9;
}

.legal-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: var(--charcoal);
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.legal-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.legal-heading:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-subheading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    opacity: 0.9;
}

.legal-list {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.legal-list li {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--charcoal);
    opacity: 0.9;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

.legal-list li strong {
    font-weight: 600;
    color: var(--charcoal);
}

.legal-content a {
    color: var(--gold);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--charcoal);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.legal-table thead {
    background: var(--cream);
}

.legal-table th {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--gold);
    color: var(--charcoal);
}

.legal-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    color: var(--charcoal);
    opacity: 0.9;
}

.legal-table tbody tr:hover {
    background: var(--cream);
}

.process-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.process-image-left {
    order: 1;
}

.process-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 2px solid rgba(26, 26, 26, 0.1);
}

.process-content-right {
    order: 2;
}

.process-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    flex-direction: column;
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.process-step p {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
}

.inspiration-section {
    padding: 8rem 4rem;
    background: var(--cream);
}

.inspiration-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.inspiration-content-left {
    order: 1;
}

.inspiration-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.inspiration-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.inspiration-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.inspiration-image-right {
    order: 2;
}

.inspiration-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 2px solid rgba(26, 26, 26, 0.1);
}

.quality-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.quality-container {
    max-width: 1400px;
    margin: 0 auto;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.quality-item {
    text-align: center;
    padding: 2rem;
}

.quality-icon-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.quality-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.quality-item p {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
}

.experience-section {
    padding: 8rem 4rem;
    background: var(--cream);
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
}

.experience-image-center {
    margin-bottom: 4rem;
}

.experience-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 2px solid rgba(26, 26, 26, 0.1);
}

.experience-content-below {
    text-align: center;
}

.experience-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: var(--charcoal);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.collaboration-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.collaboration-container {
    max-width: 1400px;
    margin: 0 auto;
}

.collaboration-content-top {
    text-align: center;
    margin-bottom: 4rem;
}

.collaboration-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    max-width: 800px;
    margin: 0 auto;
}

.collaboration-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.collab-img-wrapper {
    overflow: hidden;
    border: 2px solid rgba(26, 26, 26, 0.1);
}

.collab-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collab-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .process-container,
    .inspiration-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-image-left,
    .inspiration-image-right {
        order: 0;
    }

    .quality-grid,
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .collaboration-images {
        grid-template-columns: 1fr;
    }

    .process-img,
    .inspiration-img,
    .experience-img,
    .collab-img {
        height: 300px;
    }
}

@media (max-width: 320px) {
    .process-section,
    .inspiration-section,
    .quality-section,
    .experience-section,
    .collaboration-section {
        padding: 4rem 1rem;
    }

    .quality-icon-wrapper {
        width: 150px;
        height: 150px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

.mission-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
}

.mission-content {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    max-width: 800px;
    margin: 0 auto;
}

.mission-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mission-img-item {
    overflow: hidden;
    border: 2px solid rgba(26, 26, 26, 0.1);
}

.mission-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mission-img:hover {
    transform: scale(1.05);
}

.expertise-section {
    padding: 8rem 4rem;
    background: var(--cream);
}

.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.expertise-image-left {
    order: 1;
}

.expertise-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 2px solid rgba(26, 26, 26, 0.1);
}

.expertise-content-right {
    order: 2;
}

.expertise-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.expertise-areas {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-area {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.area-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.expertise-area h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.expertise-area p {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
}

.commitment-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.commitment-container {
    max-width: 1400px;
    margin: 0 auto;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.commitment-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--cream);
    border: 1px solid rgba(26, 26, 26, 0.1);
    transition: transform 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
}

.commitment-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.commitment-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.commitment-card p {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .expertise-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .expertise-image-left {
        order: 0;
    }

    .mission-image-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .expertise-img,
    .mission-img {
        height: 300px;
    }
}

@media (max-width: 320px) {
    .mission-section,
    .expertise-section,
    .commitment-section {
        padding: 4rem 1rem;
    }
}

.service-benefits-section {
    padding: 8rem 4rem;
    background: var(--cream);
}

.service-benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-item {
    text-align: center;
}

.benefit-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid rgba(26, 26, 26, 0.1);
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.benefit-item p {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
}

.service-process-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.service-process-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.service-process-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
}

.service-process-image {
    order: -1;
}

.service-process-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 2px solid rgba(26, 26, 26, 0.1);
}

.portfolio-showcase-section {
    padding: 8rem 4rem;
    background: var(--cream);
}

.portfolio-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.showcase-image-left {
    order: 1;
}

.showcase-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 2px solid rgba(26, 26, 26, 0.1);
}

.showcase-content-right {
    order: 2;
}

.showcase-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.showcase-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.portfolio-stats-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.portfolio-stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.portfolio-stat {
    text-align: center;
    padding: 2rem;
}

.portfolio-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.portfolio-stat-label {
    font-size: 1.1rem;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-options-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.contact-options-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.contact-option {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--cream);
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.contact-option-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.contact-option p {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact-option-note {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
    font-style: italic;
}

.contact-location-section {
    padding: 8rem 4rem;
    background: var(--cream);
}

.contact-location-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.location-content-left {
    order: 1;
}

.location-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-detail-item strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    display: block;
    margin-bottom: 0.5rem;
}

.location-detail-item p {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.8;
}

.location-image-right {
    order: 2;
}

.location-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 2px solid rgba(26, 26, 26, 0.1);
}

@media (max-width: 768px) {
    .service-process-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-process-image {
        order: 0;
    }

    .portfolio-showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-image-left {
        order: 0;
    }

    .benefits-grid,
    .portfolio-stats-grid,
    .contact-options-grid {
        grid-template-columns: 1fr;
    }

    .contact-location-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-content-left {
        order: 0;
    }

    .service-process-img,
    .showcase-img,
    .location-img {
        height: 300px;
    }
}

@media (max-width: 320px) {
    .service-benefits-section,
    .service-process-section,
    .portfolio-showcase-section,
    .portfolio-stats-section,
    .contact-options-section,
    .contact-location-section {
        padding: 4rem 1rem;
    }

    .portfolio-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .legal-section {
        padding: 4rem 2rem;
    }

    .legal-table {
        font-size: 0.85rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.75rem 0.5rem;
    }
}

