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

:root {
    --navy: #0F172A;
    --navy-light: #1E293B;
    --navy-mid: #334155;
    --gold: #D4A853;
    --gold-light: #E8C97A;
    --gold-dark: #B8923F;
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
    --shadow-md: 0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
    --shadow-lg: 0 12px 40px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.06);
    --shadow-xl: 0 24px 60px rgba(15,23,42,0.16), 0 8px 20px rgba(15,23,42,0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--navy);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.gold { color: var(--gold-dark); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy);
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 520px;
    line-height: 1.7;
}

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

.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(15,23,42,0.25);
}

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,23,42,0.3);
}

.btn-ghost {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--gray-200);
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--gold);
    color: var(--navy);
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-size: 0.88rem;
    font-weight: 700;
    transition: all var(--transition);
}

.btn-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

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

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

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253,248,240,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15,23,42,0.06);
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(253,248,240,0.95);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    color: var(--navy);
}

.logo-icon { flex-shrink: 0; }

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

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--navy);
    background: rgba(15,23,42,0.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

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

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15,23,42,0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--navy);
}

.hero-title .gold {
    font-style: italic;
}

.hero-body {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

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

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

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

.stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--navy);
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero visuals */
.hero-visual {
    position: relative;
    height: 680px;
}

.hero-img-main {
    width: 100%;
    height: 580px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero-img-float {
    position: absolute;
    bottom: 0;
    left: -60px;
    width: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

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

.float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(253,248,240,0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
}

.float-badge svg { flex-shrink: 0; }

.hero-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

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

.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,168,83,0.2);
}

.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .card-img img {
    transform: scale(1.06);
}

.card-body {
    padding: 28px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.card-body p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: all var(--transition);
}

.card-link:hover {
    gap: 10px;
    color: var(--navy);
}

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

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

.about-img-stack {
    position: relative;
    height: 580px;
}

.about-img-1 {
    width: 75%;
    height: 460px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 0;
    left: 0;
}

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

.about-img-2 {
    width: 55%;
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    bottom: 0;
    right: 0;
    border: 4px solid var(--cream);
}

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

.about-badge {
    position: absolute;
    bottom: 140px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    z-index: 2;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-body {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(212,168,83,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

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

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.15), transparent 40%);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

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

.gallery-item:not(.large):not(.tall) {
    grid-column: span 6;
    height: 220px;
}

.gallery-item.tall {
    grid-column: 10 / 13;
    grid-row: 1 / 3;
    height: 480px;
}

.gallery-item:nth-child(4) {
    grid-column: 8 / 10;
    grid-row: 1 / 2;
    height: 220px;
}

.gallery-item:nth-child(5) {
    grid-column: 1 / 6;
    grid-row: 2 / 3;
    height: 260px;
}

.gallery-item:nth-child(6) {
    grid-column: 6 / 10;
    grid-row: 2 / 3;
    height: 260px;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials .section-tag { color: var(--gold); }
.testimonials .section-title { color: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--navy-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(212,168,83,0.1);
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(212,168,83,0.3);
    transform: translateY(-4px);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212,168,83,0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    background: var(--cream);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 72px 80px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.cta-content { flex: 1; }

.cta-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}

.cta-body {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 420px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ─── CONTACT ─── */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact-body {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

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

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(212,168,83,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.detail span, .detail a {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.detail a:hover { color: var(--gold-dark); }

/* Form */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 44px;
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,168,83,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    border: 2px solid rgba(212,168,83,0.2);
}

.form-success.show {
    display: flex;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── FOOTER ─── */
.footer {
    background: var(--navy);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 260px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
}

.footer-contact svg { flex-shrink: 0; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

/* ─── REVEAL ANIMATION ─── */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── MOBILE RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        height: 480px;
        order: -1;
    }
    
    .hero-img-main { height: 400px; }
    
    .hero-img-float {
        left: -20px;
        width: 200px;
    }
    
    .hero-title { font-size: clamp(2.4rem, 6vw, 3.5rem); }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    
    .about-grid { gap: 48px; }
    
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 56px 40px;
    }
    
    .cta-body { margin: 0 auto; }
    .cta-actions { justify-content: center; }
    
    .contact-grid { gap: 48px; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253,248,240,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(15,23,42,0.06);
        transform: translateY(-120%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.open { transform: translateY(0); }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px 16px;
    }
    
    .nav-toggle { display: flex; }
    
    .hero { padding: 100px 0 60px; min-height: auto; }
    
    .hero-visual { height: 380px; }
    
    .hero-img-main { height: 320px; }
    
    .hero-img-float { width: 160px; left: -10px; }
    
    .hero-actions { flex-direction: column; }
    
    .hero-actions .btn { justify-content: center; }
    
    .hero-stats { gap: 20px; }
    
    .hero-scroll { display: none; }
    
    .services { padding: 80px 0; }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .about { padding: 80px 0; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .about-img-stack { height: 400px; }
    
    .about-img-1 { height: 320px; width: 85%; }
    
    .about-img-2 { width: 60%; height: 200px; }
    
    .about-badge { left: -10px; bottom: 100px; }
    
    .gallery { padding: 80px 0; }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item.large { grid-column: 1 / 3; grid-row: auto; height: 260px; }
    
    .gallery-item:not(.large):not(.tall) { grid-column: span 1; height: 180px; }
    
    .gallery-item.tall { grid-column: 1 / 3; grid-row: auto; height: 260px; }
    
    .gallery-item:nth-child(4) { grid-column: 1 / 2; height: 180px; }
    
    .gallery-item:nth-child(5) { grid-column: 2 / 3; height: 180px; }
    
    .gallery-item:nth-child(6) { grid-column: 1 / 3; height: 180px; }
    
    .testimonials { padding: 80px 0; }
    
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    
    .cta { padding: 60px 0; }
    
    .cta-inner { padding: 40px 28px; }
    
    .cta-actions { flex-direction: column; width: 100%; }
    
    .cta-actions .btn { justify-content: center; }
    
    .contact { padding: 80px 0; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    
    .contact-form-wrap { padding: 28px; }
    
    .footer { padding: 60px 0 0; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    
    .hero-title { font-size: 2.2rem; }
    
    .hero-visual { height: 300px; }
    
    .hero-img-main { height: 260px; }
    
    .hero-img-float { display: none; }
    
    .section-title { font-size: 1.8rem; }
    
    .service-card { border-radius: var(--radius-md); }
    
    .card-body { padding: 22px; }
}
