:root {
    --gold: #b39c56;
    --gold-light: #d4c68a;
    --gold-dark: #8a7940;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-light: #f7f7f5;
    --gray-medium: #666;
    --gray-shadow: rgba(0, 0, 0, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(179, 156, 86, 0.25);
    --font-heading: 'Cormorant Garamond', serif;
    --font-script: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 500;
}

img {
    max-width: 100%;
    display: block;
}

/* ========== UTILITY ========== */
.text-gold {
    color: var(--gold);
}

.gold-text {
    color: var(--gold);
}

.script-accent {
    font-family: var(--font-script);
    text-transform: none;
    letter-spacing: 0;
    font-size: 2.5rem;
    margin-bottom: -0.5rem;
    color: var(--gold);
    font-weight: 400;
}

.glass-morphism {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

.section-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 1rem;
    font-weight: 400;
}

/* ========== NAVBAR ========== */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-text {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.4rem;
    color: var(--black);
    font-weight: 300 !important;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

nav a:not(.btn-gold-outline)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:not(.btn-gold-outline):hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--gold);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== BUTTONS ========== */
.btn-gold {
    background-color: var(--gold);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(179, 156, 86, 0.25);
    border: 2px solid var(--gold);
    border-radius: 0;
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-gold:hover {
    background-color: var(--black);
    border-color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
    color: var(--black);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--black);
    border-radius: 0;
}

.btn-ghost:hover {
    background-color: var(--black);
    color: white;
    transform: translateY(-3px);
}

.btn-gold-outline {
    border: 1.5px solid var(--gold);
    color: var(--gold) !important;
    padding: 0.7rem 1.5rem;
    transition: var(--transition) !important;
    font-weight: 700;
}

.btn-gold-outline:hover {
    background-color: var(--gold);
    color: white !important;
}

.btn-gold-large {
    background-color: var(--gold);
    color: white;
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 4px;
    display: inline-block;
    margin-top: 2rem;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.btn-gold-large:hover {
    background: var(--black);
    border-color: var(--black);
    transform: translateY(-3px);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 4rem;
    background-color: var(--white);
}

.hero-bg-accent {
    position: absolute;
    right: 0;
    top: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(135deg, #fdfcfa 0%, var(--gray-light) 100%);
    z-index: 1;
    overflow: hidden;
}

.hero-bg-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: url('images/logo_bg.png') no-repeat center;
    background-size: contain;
    opacity: 0.15;
    transform: translate(-30%, -20%) rotate(-15deg);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--black);
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1rem;
    color: var(--gray-medium);
    max-width: 450px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-medium);
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
}

.main-img-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    background: white;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image:hover {
    transform: scale(1.03);
}

.glass-float-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.small-1 {
    top: -25px;
    right: -20px;
    animation: float 4s ease-in-out infinite;
}

.small-2 {
    bottom: 40px;
    left: -35px;
    animation: float 5s ease-in-out infinite reverse;
}

.card-number {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--gold);
    display: block;
}

.card-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== ABOUT ========== */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.about-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-card:hover .about-image {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}

.badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-medium);
    font-weight: 500;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
    text-transform: none !important;
}

.about-text {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.9;
}

.about-highlights {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.highlight p {
    font-size: 0.85rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ========== SERVICES ========== */
.services {
    padding: 8rem 0;
    background-color: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: 0 15px 40px var(--gray-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.featured {
    transform: scale(1.03);
    z-index: 5;
    border-color: var(--gold);
}

.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    border-radius: 2px;
}

.gold-border {
    border-color: var(--gold);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-info {
    padding: 2rem 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 2.2rem !important;
    margin-bottom: 1.2rem;
    color: var(--black);
    line-height: 1.1;
    font-family: var(--font-heading);
}

.service-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-info li {
    font-size: 0.88rem;
    color: var(--gray-medium);
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-info li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-link {
    display: inline-block;
    background: #b39c56 !important;
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    margin-top: auto;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link:hover {
    background: var(--black) !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(179, 156, 86, 0.3);
}

.service-link .arrow {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover .arrow {
    transform: translateX(5px);
}

/* ========== GALLERY ========== */
.gallery {
    padding: 8rem 0;
    background-color: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px var(--gray-shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 8rem 0;
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--white) 50%, var(--gray-light) 50%);
}

.full-cta {
    background: white;
    padding: 5rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gold);
}

.full-cta h3 {
    font-size: 2.5rem;
    margin: 0.8rem 0;
}

.full-cta p {
    color: var(--gray-medium);
    max-width: 500px;
    margin: 0 auto;
}

/* ========== CONTACT ========== */
.contact {
    padding: 8rem 0;
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
    color: var(--black);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(179, 156, 86, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-submit {
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-card {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.info-card strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.info-card p {
    font-size: 0.88rem;
    color: var(--gray-medium);
}

/* ========== FOOTER ========== */
footer {
    padding: 5rem 0 2rem;
    background-color: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid #1a1a1a;
}

.footer-brand .logo-img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-sub {
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #777;
    font-size: 0.85rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-nav h4,
.footer-social h4 {
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: var(--transition);
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.social-icon svg {
    stroke: currentColor;
}

.footer-copy {
    text-align: center;
    font-size: 0.75rem;
    color: #555;
    padding-top: 2rem;
    margin-top: 0;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--gold);
    background: white;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.scroll-top svg {
    stroke: currentColor;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Reveal animation base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    nav a {
        font-size: 1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 4rem;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-bg-accent {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .script-accent {
        text-align: center;
    }

    .about-image {
        height: 400px;
    }

    .about-badge {
        right: 10px;
        bottom: -15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .featured {
        transform: none;
    }

    .featured:hover {
        transform: translateY(-8px);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .full-cta {
        padding: 3rem 2rem;
    }

    .full-cta h3 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .script-accent {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .btn-gold-large {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}