/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-gold: #C9A96E;
    --accent-gold: #D4B896;
    --soft-gold: #F4F1EA;
    --pure-white: #FFFFFF;
    --soft-white: #FEFEFE;
    --light-gray: #F8F8F8;
    --medium-gray: #8B8B8B;
    --dark-gray: #2C2C2C;
    --elegant-black: #1C1C1C;
    --warm-beige: #F5F2EE;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-subheading: 'Crimson Text', serif;
    --font-body: 'Source Sans Pro', sans-serif;
    --font-logo: 'Bodoni Moda', serif;
    
    /* Transitions */
    --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: none;
    scroll-padding-top: 0;
}

/* Only enable smooth scrolling on desktop */
@media (min-width: 769px) and (hover: hover) {
    html {
        scroll-behavior: smooth;
    }
}

/* Disable scroll snap on touch devices to prevent snapback */
@media (hover: none) and (pointer: coarse) {
    html {
        scroll-snap-type: none !important;
        scroll-behavior: auto !important;
        scroll-padding-top: 0;
    }
    
    .section-snap {
        scroll-snap-align: none !important;
        scroll-snap-stop: none !important;
    }
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--soft-white);
    overflow-x: hidden;
    overscroll-behavior-y: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    a, button, .btn {
        touch-action: manipulation;
    }
}

/* Scroll Snap Sections */
.section-snap {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo-img {
    filter: brightness(0);
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo h1 {
    font-family: var(--font-logo);
    font-size: 28px;
    font-weight: 400;
    color: var(--pure-white);
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo h1 {
    color: var(--elegant-black);
}

.nav-logo .tagline {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--primary-gold);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 2px;
}

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

.nav-contact-btn {
    padding: 12px 28px;
    background: transparent;
    color: var(--pure-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--pure-white);
    transition: var(--transition);
}

.navbar.scrolled .nav-contact-btn {
    color: var(--elegant-black);
    border-color: var(--elegant-black);
}

.nav-contact-btn:hover {
    background: var(--primary-gold);
    color: var(--pure-white);
    border-color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--pure-white);
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--elegant-black);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/hero.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
    max-width: 1000px;
    padding: 0 40px;
    margin-top: -400px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease-out 0.2s backwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    color: var(--pure-white);
    opacity: 0.9;
    transition: var(--transition);
}

.scroll-indicator:hover svg {
    opacity: 1;
    transform: translateY(4px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: transparent;
    color: var(--pure-white);
    border: 1px solid var(--pure-white);
}

.btn-primary:hover {
    background: var(--pure-white);
    color: var(--elegant-black);
}

/* Content Sections */
.content-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px;
    background: var(--soft-white);
    position: relative;
    overflow: hidden;
}

.content-section.dark {
    background: var(--warm-beige);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse 200px 3px at 20% 30%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 150px 2px at 80% 70%, rgba(201, 169, 110, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 180px 2.5px at 60% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 120px 1.5px at 30% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 160px 2px at 70% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}

.content-section.dark::before {
    background-image: 
        radial-gradient(ellipse 200px 3px at 20% 30%, rgba(201, 169, 110, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 150px 2px at 80% 70%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 180px 2.5px at 60% 20%, rgba(201, 169, 110, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 120px 1.5px at 30% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 160px 2px at 70% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-inner.reverse {
    direction: rtl;
}

.section-inner.reverse > * {
    direction: ltr;
}

.content-image {
    position: relative;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

/* Arch Top Style - Perfect Arc */
.content-image.arch-top {
    position: relative;
    overflow: visible;
}

.content-image.arch-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 70%;
    background: var(--primary-gold);
    border-radius: 50% 50% 0 0;
    opacity: 0.08;
    z-index: 1;
}

.content-image.arch-top img {
    border-radius: 50% 50% 0 0;
    position: relative;
    z-index: 2;
    transform: scale(1.05);
    transform-origin: bottom center;
}

/* Rounded Style */
.content-image.rounded {
    position: relative;
}

.content-image.rounded::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.content-image.rounded img {
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-image.arch-top:hover img {
    transform: scale(1.1);
}

.content-text {
    padding: 40px 0;
}

.content-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 300;
    color: var(--dark-gray);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.content-text .lead {
    font-size: clamp(18px, 2vw, 22px);
    color: #6B6B6B;
    line-height: 1.8;
    margin-bottom: 48px;
    font-weight: 300;
}

.text-columns {
    display: grid;
    gap: 36px;
}

.column-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-gold);
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
}

.column-icon svg {
    width: 100%;
    height: 100%;
}

.column h3 {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
}

.column p {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.8;
    margin-bottom: 8px;
    font-weight: 300;
}

/* Statement Section */
.statement-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px;
    background: var(--warm-beige);
    position: relative;
    overflow: hidden;
}

.statement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse 300px 4px at 15% 25%, rgba(201, 169, 110, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 250px 3px at 85% 75%, rgba(201, 169, 110, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 200px 2px at 50% 10%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 180px 2.5px at 25% 85%, rgba(201, 169, 110, 0.1) 0%, transparent 60%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}

.statement-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.statement-text {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    color: var(--dark-gray);
    line-height: 1.6;
    letter-spacing: -0.5px;
    font-style: italic;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.statement-text.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Clientele Section - Icon Based */
.clientele-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px;
    background: var(--soft-white);
    position: relative;
    overflow: hidden;
}

.clientele-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse 220px 3px at 25% 40%, rgba(201, 169, 110, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 180px 2px at 75% 60%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 160px 2.5px at 40% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 140px 1.5px at 60% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}

.clientele-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 300;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
}

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

.clientele-item {
    text-align: center;
    padding: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--soft-white);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.1);
}

.clientele-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(201, 169, 110, 0.2);
}

.clientele-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.clientele-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.clientele-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.8) 0%, rgba(201, 169, 110, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.clientele-icon {
    width: 64px;
    height: 64px;
    color: var(--pure-white);
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.clientele-icon svg {
    width: 100%;
    height: 100%;
}

.clientele-item:hover .clientele-icon {
    transform: scale(1.1);
}

.clientele-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--dark-gray);
    margin: 32px 0 16px 0;
    letter-spacing: -0.3px;
    padding: 0 24px;
}

.clientele-item p {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.8;
    font-weight: 300;
    padding: 0 24px 32px 24px;
    margin: 0;
}

/* Miel Section */
.miel-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px 60px 60px;
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--soft-gold) 100%);
    position: relative;
    overflow: hidden;
}

.miel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse 300px 4px at 20% 30%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 250px 3px at 80% 70%, rgba(201, 169, 110, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 200px 3px at 50% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}

.miel-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-family: var(--font-subheading);
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 400;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
    letter-spacing: 0.3px;
}

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

.miel-item {
    position: relative;
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.12);
}

.miel-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(201, 169, 110, 0.2);
}

.miel-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #FFF8E7 0%, #F5F2EE 100%);
}

.miel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.miel-item:hover .miel-image img {
    transform: scale(1.08);
}

.miel-content {
    padding: 24px 24px 28px 24px;
    text-align: center;
}

.miel-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.miel-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #6B6B6B;
    font-weight: 300;
}

/* Image with Quote Section */
.image-quote-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--warm-beige);
}

.image-quote-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.quote-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.quote-content {
    max-width: 500px;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--primary-gold);
    line-height: 0.8;
    margin-bottom: 20px;
    opacity: 0.3;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 300;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 16px;
    color: #6B6B6B;
    font-weight: 400;
    letter-spacing: 1px;
}

.image-side {
    position: relative;
    overflow: hidden;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px;
    background: var(--light-gray);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 300;
    color: var(--dark-gray);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-header p {
    font-size: 18px;
    color: #6B6B6B;
    font-weight: 300;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--soft-white) 0%, var(--warm-beige) 100%);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(201, 169, 110, 0.3);
    font-size: 16px;
    color: var(--elegant-black);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-gold);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 0;
    color: var(--medium-gray);
    font-size: 16px;
    font-weight: 300;
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    font-size: 12px;
    color: var(--primary-gold);
    font-weight: 500;
}

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

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

.contact-info-mini {
    display: flex;
    gap: 40px;
}

.info-item-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

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

.info-label {
    font-size: 12px;
    color: var(--medium-gray);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-value {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 300;
}

.btn-submit {
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--pure-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 110, 0.4);
}

/* Footer */
.footer {
    background: var(--elegant-black);
    color: var(--soft-white);
    padding: 60px 60px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-family: var(--font-logo);
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 12px;
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--soft-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

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

/* Responsive Design */
/* Tablet and smaller desktops */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 40px;
    }

    .section-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-inner.reverse {
        direction: ltr;
    }

    .content-section,
    .contact-section,
    .statement-section,
    .clientele-section {
        padding: 100px 40px;
    }

    .content-text h2 {
        font-size: clamp(36px, 5vw, 48px);
    }

    .content-text .lead {
        font-size: clamp(17px, 2vw, 20px);
    }

    .content-image img {
        height: 450px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-footer {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .contact-info-mini {
        flex-direction: row;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 50px 40px;
    }

    .clientele-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .miel-section {
        padding: 100px 40px 60px 40px;
        height: auto;
    }

    .section-subtitle {
        margin-bottom: 40px;
        font-size: clamp(15px, 3vw, 18px);
    }

    .miel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .miel-image {
        height: 320px;
    }

    .miel-content {
        padding: 20px 20px 24px 20px;
    }

    .miel-content h3 {
        font-size: clamp(18px, 4vw, 22px);
    }

    .miel-content p {
        font-size: 14px;
    }

    .image-quote-inner {
        grid-template-columns: 1fr;
    }

    .quote-side {
        padding: 70px 40px;
    }

    .image-side {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-snap-type: none !important;
        scroll-behavior: auto;
    }

    .section-snap {
        scroll-snap-align: none !important;
        scroll-snap-stop: none !important;
        min-height: auto;
    }

    /* Hero Section Mobile */
    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 48px);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: clamp(16px, 4vw, 18px);
        margin-bottom: 32px;
    }

    /* Navigation Mobile */
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .nav-logo h1 {
        font-size: 20px;
    }

    .nav-logo-img {
        height: 28px;
    }

    .nav-logo .tagline {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--pure-white);
        width: 100%;
        height: calc(100vh - 70px);
        transition: var(--transition);
        padding: 40px 20px;
        justify-content: flex-start;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-contact-btn {
        padding: 14px 32px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        border-color: var(--elegant-black);
        color: var(--elegant-black);
    }

    .hamburger {
        display: flex;
    }

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

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

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

    /* Content Sections Mobile */
    .content-section,
    .contact-section,
    .statement-section,
    .clientele-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .section-inner {
        gap: 40px;
    }

    .content-text {
        padding: 20px 0;
    }

    .content-text h2 {
        font-size: clamp(32px, 8vw, 40px);
        margin-bottom: 20px;
    }

    .content-text .lead {
        font-size: clamp(16px, 4vw, 18px);
        margin-bottom: 32px;
    }

    .text-columns {
        gap: 28px;
    }

    .column h3 {
        font-size: clamp(18px, 4vw, 20px);
        margin-bottom: 10px;
    }

    .column p {
        font-size: 15px;
        line-height: 1.7;
    }

    .column-icon {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }

    /* Images Mobile */
    .content-image img {
        height: 350px;
        border-radius: 16px;
    }

    .content-image.arch-top img {
        height: 350px;
    }

    .content-image.rounded img {
        border-radius: 16px;
    }

    .content-image.rounded::after {
        display: none;
    }

    /* Statement Section Mobile */
    .statement-section {
        padding: 60px 20px;
    }

    .statement-text {
        font-size: clamp(22px, 6vw, 28px);
        line-height: 1.5;
    }

    /* Clientele Section Mobile */
    .clientele-section {
        padding: 60px 20px;
    }

    .section-heading {
        font-size: clamp(32px, 8vw, 40px);
        margin-bottom: 50px;
    }

    .clientele-grid {
        gap: 50px;
    }

    .clientele-item {
        padding: 0;
    }

    .clientele-image {
        height: 250px;
    }

    .clientele-icon {
        width: 56px;
        height: 56px;
    }

    .clientele-item h3 {
        font-size: 22px;
        margin: 24px 0 12px 0;
        padding: 0 20px;
    }

    .clientele-item p {
        font-size: 15px;
        padding: 0 20px 24px 20px;
    }

    .miel-section {
        padding: 80px 20px 40px 20px;
        height: auto;
    }

    .section-subtitle {
        margin-bottom: 35px;
        font-size: clamp(15px, 4vw, 17px);
    }

    .miel-grid {
        gap: 35px;
    }

    .miel-image {
        height: 280px;
    }

    .miel-content {
        padding: 20px 20px 24px 20px;
    }

    .miel-content h3 {
        font-size: clamp(18px, 5vw, 22px);
        margin-bottom: 10px;
    }

    .miel-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Image Quote Section Mobile */
    .image-quote-section {
        min-height: auto;
    }

    .image-quote-inner {
        min-height: auto;
    }

    .quote-side {
        padding: 50px 20px;
        order: 2;
    }

    .quote-mark {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .quote-text {
        font-size: clamp(18px, 5vw, 22px);
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .quote-author {
        font-size: 14px;
    }

    .image-side {
        min-height: 350px;
        order: 1;
    }

    /* Contact Form Mobile */
    .contact-section {
        padding: 60px 20px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h2 {
        font-size: clamp(32px, 8vw, 40px);
        margin-bottom: 12px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .form-row {
        gap: 20px;
    }

    .contact-form {
        gap: 24px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-footer {
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
    }

    .contact-info-mini {
        flex-direction: column;
        gap: 20px;
    }

    .info-item-mini {
        gap: 10px;
    }

    .info-icon {
        width: 18px;
        height: 18px;
    }

    .info-label {
        font-size: 11px;
    }

    .info-value {
        font-size: 13px;
    }

    .btn-submit {
        width: 100%;
        padding: 16px 40px;
        font-size: 13px;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 20px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-brand h3 {
        font-size: 22px;
    }

    .footer-brand p {
        font-size: 11px;
    }

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

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    /* Scroll Indicator Mobile */
    .scroll-indicator {
        bottom: 25px;
    }

    .scroll-indicator svg {
        width: 30px;
        height: 30px;
    }

    /* Scroll to Top Button Mobile */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    
    /* Navigation */
    .nav-container {
        padding: 0 15px;
        height: 65px;
    }

    .nav-logo h1 {
        font-size: 18px;
    }

    .nav-logo-img {
        height: 26px;
    }

    .nav-logo .tagline {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 30px 15px;
    }

    /* Hero */
    .hero {
        min-height: 550px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 40px);
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: clamp(14px, 4vw, 16px);
        margin-bottom: 28px;
    }

    /* Sections */
    .content-section,
    .contact-section,
    .statement-section,
    .clientele-section {
        padding: 50px 15px;
    }

    .section-inner {
        gap: 30px;
    }

    /* Typography */
    .content-text h2 {
        font-size: clamp(28px, 7vw, 32px);
        margin-bottom: 16px;
    }

    .content-text .lead {
        font-size: clamp(15px, 4vw, 16px);
        margin-bottom: 28px;
    }

    .column h3 {
        font-size: clamp(17px, 4vw, 18px);
    }

    .column p {
        font-size: 14px;
    }

    .column-icon {
        width: 26px;
        height: 26px;
    }

    /* Images */
    .content-image img {
        height: 280px;
    }

    .content-image.arch-top img {
        height: 280px;
        border-radius: 40% 40% 0 0;
    }

    .content-image.arch-top::before {
        width: 80%;
        height: 80%;
    }

    /* Statement */
    .statement-section {
        padding: 50px 15px;
    }

    .statement-text {
        font-size: clamp(20px, 5.5vw, 24px);
    }

    /* Clientele */
    .section-heading {
        font-size: clamp(28px, 7vw, 32px);
        margin-bottom: 40px;
    }

    .clientele-grid {
        gap: 40px;
    }

    .clientele-item {
        padding: 0;
    }

    .clientele-image {
        height: 220px;
    }

    .clientele-icon {
        width: 48px;
        height: 48px;
    }

    .clientele-item h3 {
        font-size: 20px;
        margin: 20px 0 10px 0;
        padding: 0 16px;
    }

    .clientele-item p {
        font-size: 14px;
        padding: 0 16px 20px 16px;
    }

    .miel-section {
        padding: 70px 15px 30px 15px;
        height: auto;
    }

    .section-subtitle {
        margin-bottom: 30px;
        font-size: clamp(14px, 4vw, 16px);
        padding: 0 5px;
    }

    .miel-grid {
        gap: 30px;
    }

    .miel-image {
        height: 260px;
    }

    .miel-content {
        padding: 18px 18px 22px 18px;
    }

    .miel-content h3 {
        font-size: clamp(17px, 5vw, 20px);
        margin-bottom: 8px;
    }

    .miel-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Quote Section */
    .quote-side {
        padding: 40px 15px;
    }

    .quote-mark {
        font-size: 50px;
    }

    .quote-text {
        font-size: clamp(16px, 4.5vw, 18px);
    }

    .quote-author {
        font-size: 13px;
    }

    .image-side {
        min-height: 300px;
    }

    /* Contact Form */
    .contact-section {
        padding: 50px 15px;
    }

    .contact-header {
        margin-bottom: 35px;
    }

    .contact-header h2 {
        font-size: clamp(28px, 7vw, 32px);
    }

    .contact-header p {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 30px 15px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 16px 0;
    }

    .form-group label {
        font-size: 14px;
        top: 16px;
    }

    .btn-submit {
        padding: 14px 32px;
        font-size: 12px;
    }

    .contact-info-mini {
        gap: 16px;
    }

    .info-item-mini {
        gap: 8px;
    }

    .info-icon {
        width: 16px;
        height: 16px;
    }

    /* Footer */
    .footer {
        padding: 40px 15px 25px;
    }

    .footer-brand h3 {
        font-size: 20px;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator svg {
        width: 26px;
        height: 26px;
    }

    /* Scroll to Top */
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: var(--elegant-black);
    color: var(--pure-white);
    border: 1px solid var(--elegant-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: transparent;
    color: var(--elegant-black);
}

/* Loading State */
.loading {
    opacity: 0.5;
    pointer-events: none;
}