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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

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

/* ── Navigation ── */
.nav-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 244, 249, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107, 47, 91, 0.08);
    box-shadow: 0 1px 12px rgba(107, 47, 91, 0.06);
    transition: all 0.3s ease;
}

.nav-scrolled.is-visible {
    background: rgba(253, 244, 249, 0.97);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: #6B2F5B;
}

.nav-logo-icon {
    color: #6B2F5B;
}

.nav-logo-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-link:hover {
    color: #6B2F5B;
    background: rgba(107, 47, 91, 0.06);
}

.nav-link--cta {
    background: #6B2F5B;
    color: #fff !important;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: #58264a;
    transform: translateY(-1px);
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #6B2F5B;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #6B2F5B;
    color: #fff;
    box-shadow: 0 4px 16px rgba(107, 47, 91, 0.25);
}

.btn-primary:hover {
    background: #58264a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(107, 47, 91, 0.35);
}

.btn-outline {
    background: transparent;
    color: #6B2F5B;
    border: 2px solid rgba(107, 47, 91, 0.3);
}

.btn-outline:hover {
    border-color: #6B2F5B;
    background: rgba(107, 47, 91, 0.04);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

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

/* ── Section Layout ── */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header--centered {
    padding-top: 80px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(107, 47, 91, 0.08);
    color: #6B2F5B;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdf4f9 0%, #fce7f3 50%, #fff7ed 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, #6B2F5B 1px, transparent 0);
    background-size: 32px 32px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

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

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

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

.hero-stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: #6B2F5B;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(107, 47, 91, 0.2);
}

/* Hero Images */
.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 47, 91, 0.15);
}

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

.hero-image-accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(107, 47, 91, 0.2);
    border: 4px solid #fdf4f9;
}

.hero-image-accent img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    top: 40px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(107, 47, 91, 0.12);
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card svg {
    color: #10b981;
    flex-shrink: 0;
}

.hero-floating-card-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.hero-floating-card-sub {
    font-size: 0.8rem;
    color: #888;
}

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

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

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

.service-card {
    background: #fdf4f9;
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107, 47, 91, 0.1);
    border-color: rgba(107, 47, 91, 0.1);
    background: #fff;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(107, 47, 91, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B2F5B;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: #6B2F5B;
    color: #fff;
}

.service-card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6B2F5B;
}

.service-card-link:hover {
    gap: 10px;
}

/* ── About Section ── */
.about {
    padding: 100px 0;
    background: #fdf4f9;
}

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

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 47, 91, 0.12);
}

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

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(107, 47, 91, 0.15);
    border: 4px solid #fdf4f9;
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #6B2F5B;
    color: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(107, 47, 91, 0.3);
}

.about-experience-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    line-height: 1;
}

.about-experience-text {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.4;
}

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

.about-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(107, 47, 91, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B2F5B;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.95rem;
    color: #444;
}

/* ── Process Section ── */
.process {
    padding: 100px 0;
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

.process-step {
    text-align: center;
    padding: 32px 20px;
    border-radius: 20px;
    background: #fdf4f9;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107, 47, 91, 0.1);
    background: #fff;
}

.process-step-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.5rem;
    color: rgba(107, 47, 91, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.process-step-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.process-step-connector {
    display: none;
}

/* ── Gallery Section ── */
.gallery {
    padding: 100px 0;
    background: #fdf4f9;
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107, 47, 91, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item-overlay span {
    color: #fff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
}

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    min-height: 400px;
}

.gallery-item--wide {
    grid-column: 1 / 8;
    grid-row: 2 / 3;
    min-height: 220px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    min-height: 220px;
}

/* ── Testimonial Section ── */
.testimonial {
    padding: 100px 0;
    background: #fff;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 40px;
    background: #fdf4f9;
    border-radius: 24px;
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #6B2F5B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.testimonial-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(107, 47, 91, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B2F5B;
}

.testimonial-author-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.testimonial-author-location {
    font-size: 0.85rem;
    color: #888;
}

/* ── CTA Section ── */
.cta {
    padding: 100px 0;
    background: #6B2F5B;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 32px 32px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ── Contact Section ── */
.contact {
    padding: 100px 0;
    background: #fff;
}

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

.contact-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(107, 47, 91, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B2F5B;
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 2px;
}

.contact-detail-value {
    display: block;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.contact-detail-link {
    display: block;
    font-size: 1rem;
    color: #6B2F5B;
    font-weight: 500;
}

.contact-detail-link:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(107, 47, 91, 0.08);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fdf4f9;
    border-radius: 24px;
    padding: 40px;
}

.contact-form-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(107, 47, 91, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1a1a1a;
    background: #fff;
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: #6B2F5B;
    box-shadow: 0 0 0 3px rgba(107, 47, 91, 0.08);
}

.form-input::placeholder {
    color: #bbb;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B2F5B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Success State */
.contact-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.contact-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.contact-success-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.contact-success-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    background: #210f1d;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 14px;
}

.footer-logo svg {
    color: #f9a8d4;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-links span {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

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

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-image-wrapper {
        max-width: 500px;
    }

    .hero-image-card img {
        height: 500px;
    }

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

    .about-grid {
        gap: 48px;
    }

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

    .process-step-connector {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 244, 249, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(107, 47, 91, 0.08);
        box-shadow: 0 12px 32px rgba(107, 47, 91, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        border-radius: 12px;
    }

    .nav-link--cta {
        margin-left: 0;
        text-align: center;
        justify-content: center;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-image-accent {
        display: none;
    }

    .hero-floating-card {
        right: 10px;
        top: 20px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

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

    .about-images {
        margin-bottom: 40px;
    }

    .about-image-secondary {
        right: -10px;
        bottom: -20px;
    }

    .about-image-secondary img {
        width: 240px;
        height: 280px;
    }

    .about-experience-badge {
        top: -10px;
        left: -10px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-step {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 24px;
    }

    .process-step-number {
        font-size: 1.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

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

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: 1;
        grid-row: auto;
    }

    .gallery-item--large {
        min-height: 280px;
    }

    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        min-height: 200px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

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