@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600&family=Inter:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ivory: #FFFFF0;
    --beige: #F5F5DC;
    --taupe: #8B7D6B;
    --gold: #D4AF37;
    --dark-taupe: #6B5D4F;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    
    --font-serif: 'Cormorant', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--ivory);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: var(--font-sans);
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--dark-taupe);
    color: var(--ivory);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--dark-taupe);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--dark-taupe);
}

.btn-outline {
    display: inline-block;
    padding: 16px 48px;
    background-color: transparent;
    color: var(--dark-taupe);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--dark-taupe);
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--dark-taupe);
    color: var(--ivory);
}

.btn-gold {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--gold);
    color: var(--ivory);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.link-gold {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.link-gold::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.link-gold:hover::after {
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-top: -40px;
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.95);
    color: var(--ivory);
    padding: 30px 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.privacy-popup.show {
    transform: translateY(0);
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.privacy-popup-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-popup .btn-gold {
    flex-shrink: 0;
    padding: 12px 32px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--ivory);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 44, 44, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 40px;
}

.hero-title {
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: clamp(1px, 0.5vw, 2px);
    color: var(--ivory);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 50px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 0 20px;
}


.intro {
    padding: 120px 20px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 40px;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
}

.services-preview,
.portfolio-preview,
.testimonials,
.philosophy,
.cta,
.services-detailed,
.process,
.about-story,
.philosophy-detailed,
.expertise,
.values,
.contact-content,
.map-section,
.faq,
.thank-you-section,
.next-steps,
.explore-more,
.policy-page,
.page-hero,
.portfolio-full,
.portfolio-gallery {
    padding: 100px 20px;
}

.services-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.service-card {
    text-align: center;
    padding: 40px 20px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.philosophy {
    background-color: var(--beige);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-text h2 {
    margin-bottom: 30px;
}

.philosophy-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

.philosophy-text .btn-outline {
    margin-top: 30px;
}

.philosophy-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--ivory);
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: var(--ivory);
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 14px;
    color: var(--beige);
}

.testimonial {
    background-color: var(--beige);
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.testimonial p {
    font-style: italic;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: var(--text-light);
}

.testimonial cite {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.cta {
    background-color: var(--dark-taupe);
    color: var(--ivory);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--ivory);
    margin-bottom: 30px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.footer {
    background-color: var(--text-dark);
    color: var(--beige);
    padding: 80px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    color: var(--ivory);
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--beige);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    color: var(--ivory);
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--beige);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: var(--beige);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 245, 220, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--beige);
}

.footer-legal {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 13px;
    color: var(--beige);
}

.footer-legal a:hover {
    color: var(--gold);
}

.page-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    background-color: var(--beige);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 44, 44, 0.4);
    z-index: 1;
}

.page-hero h1 {
    margin-bottom: 20px;
    color: var(--ivory);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: clamp(2rem, 5vw, 4.5rem);
    position: relative;
    z-index: 2;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--ivory);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2 {
    margin-bottom: 25px;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 40px;
}

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.process {
    background-color: var(--beige);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
}

.process-number {
    font-family: var(--font-serif);
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 300;
}

.process-step h3 {
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.philosophy-detailed {
    background-color: var(--beige);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.philosophy-item {
    text-align: center;
    padding: 40px 30px;
}

.philosophy-item h3 {
    margin-bottom: 20px;
    color: var(--gold);
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.expertise-content {
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-text {
    text-align: center;
    margin-bottom: 60px;
}

.expertise-text p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: var(--beige);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 400;
}

.stat-label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.value-item {
    padding: 40px;
    background-color: var(--beige);
    text-align: center;
}

.value-item h3 {
    margin-bottom: 20px;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 20px;
}

.contact-form-wrapper p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    font-family: var(--font-sans);
    font-size: 16px;
    border: 1px solid var(--taupe);
    background-color: var(--ivory);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    text-transform: none;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--gold);
    text-decoration: underline;
}

.contact-form .btn-gold {
    align-self: flex-start;
}

.contact-info {
    background-color: var(--beige);
    padding: 60px 40px;
    height: fit-content;
}

.contact-info h2 {
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--gold);
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.8;
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--taupe);
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.map-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 30px;
    font-size: 14px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    padding: 40px;
    background-color: var(--beige);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.thank-you-section {
    padding-top: 160px;
}

.thank-you-section .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-content h1 {
    margin-bottom: 30px;
}

.thank-you-message {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 25px;
}

.thank-you-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}


.next-steps {
    background-color: var(--beige);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.step-item {
    text-align: center;
    padding: 40px 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step-item h3 {
    margin-bottom: 15px;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.explore-card {
    text-align: center;
    transition: var(--transition);
}

.explore-card:hover {
    transform: translateY(-10px);
}

.explore-card {
    background-color: var(--beige);
    padding: 50px 40px;
}

.explore-card h3 {
    margin-bottom: 20px;
    color: var(--gold);
}

.explore-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    margin-bottom: 15px;
}

.policy-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.policy-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.policy-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-section li {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 10px;
}

.portfolio-magazine {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.portfolio-feature:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.portfolio-feature-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.portfolio-feature-content h2 {
    margin-bottom: 15px;
}

.portfolio-category {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

.portfolio-feature-content > p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
}

.portfolio-details {
    list-style: none;
    margin-top: 30px;
}

.portfolio-details li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
}

.portfolio-details li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.portfolio-gallery {
    background-color: var(--beige);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.gallery-item {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.approach-section {
    background-color: var(--beige);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.approach-item {
    text-align: center;
    padding: 40px 30px;
}

.approach-item h3 {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 24px;
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .philosophy-content,
    .about-content,
    .service-detail,
    .contact-grid,
    .portfolio-feature {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-detail:nth-child(even) {
        direction: ltr;
    }
    
    .portfolio-feature:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--ivory);
        flex-direction: column;
        padding: 100px 40px 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .privacy-popup-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .privacy-popup .btn-gold {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .services-grid,
    .testimonials-grid,
    .process-steps,
    .philosophy-grid,
    .expertise-stats,
    .values-grid,
    .faq-grid,
    .steps-grid,
    .explore-grid,
    .portfolio-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .explore-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn-primary,
    .btn-outline,
    .btn-gold {
        padding: 14px 32px;
        font-size: 13px;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .testimonial p {
        font-size: 16px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .page-hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .services-preview,
    .portfolio-preview,
    .testimonials,
    .philosophy,
    .cta,
    .services-detailed,
    .process,
    .about-story,
    .philosophy-detailed,
    .expertise,
    .values,
    .contact-content,
    .map-section,
    .faq,
    .thank-you-section,
    .next-steps,
    .explore-more,
    .policy-page,
    .page-hero,
    .portfolio-full,
    .portfolio-gallery {
        padding: 60px 20px;
    }
    
    .intro {
        padding: 80px 20px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .contact-info {
        padding: 40px 30px;
    }
    
    .philosophy-image img,
    .about-image img,
    .service-detail-image img,
    .portfolio-feature-image img {
        height: 400px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn-primary,
    .btn-outline,
    .btn-gold {
        padding: 12px 24px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .page-hero-subtitle {
        font-size: 0.95rem;
    }
}

