/**
 * ImoSync Design System
 * Premium dark theme inspired by Sotheby's / Barnes International
 * Pure CSS — no Tailwind dependency
 */

/* ==========================================================================
   1. RESET + BASE
   ========================================================================== */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;text-size-adjust:100%}
body{
    font-family:'DM Sans',system-ui,-apple-system,sans-serif;
    color:#fff;
    background:#0a0a0a;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.6;
    font-size:1rem;
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:color .2s}
ul,ol{list-style:none}
button,input,select,textarea{font:inherit;color:inherit;background:none;border:none}
button{cursor:pointer}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */

.font-serif{font-family:'Playfair Display',Georgia,serif}
.font-sans{font-family:'DM Sans',system-ui,sans-serif}

h1,h2,h3,h4,h5,h6{font-family:'Playfair Display',Georgia,serif;font-weight:700;line-height:1.2;color:#fff}
h1{font-size:2.5rem}
h2{font-size:2rem}
h3{font-size:1.5rem}
h4{font-size:1.25rem}
h5{font-size:1.125rem}
h6{font-size:1rem}

.text-gradient{
    background:linear-gradient(135deg,#c9a84c 0%,#e8d08c 50%,#c9a84c 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.text-xs{font-size:.75rem}
.text-sm{font-size:.875rem}
.text-base{font-size:1rem}
.text-lg{font-size:1.125rem}
.text-xl{font-size:1.25rem}
.text-2xl{font-size:1.5rem}
.text-3xl{font-size:1.875rem}
.text-4xl{font-size:2.25rem}
.text-5xl{font-size:3rem}
.text-9xl{font-size:1rem}
.text-center{text-align:center}
.text-left{text-align:left}
.text-right{text-align:right}

.font-bold{font-weight:700}
.font-semibold{font-weight:600}
.font-medium{font-weight:500}
.font-light{font-weight:300}

.leading-tight{line-height:1.25}
.leading-relaxed{line-height:1.625}
.leading-loose{line-height:2}

.tracking-wider{letter-spacing:.05em}
.tracking-widest{letter-spacing:.1em}
.uppercase{text-transform:uppercase}
.whitespace-nowrap{white-space:nowrap}

.line-clamp-2{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}
.line-clamp-3{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden}

/* ==========================================================================
   3. LAYOUT
   ========================================================================== */

.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}
.mx-auto{margin-left:auto;margin-right:auto}

/* Flex */
.flex{display:flex}
.inline-flex{display:inline-flex}
.flex-col{flex-direction:column}
.flex-wrap{flex-wrap:wrap}
.flex-1{flex:1 1 0%}
.flex-shrink-0{flex-shrink:0}
.items-center{align-items:center}
.items-start{align-items:flex-start}
.items-end{align-items:flex-end}
.justify-center{justify-content:center}
.justify-between{justify-content:space-between}
.self-start{align-self:flex-start}

/* Grid */
.grid{display:grid}
.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}
.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}

/* Gap */
.gap-1{gap:.25rem}
.gap-2{gap:.5rem}
.gap-3{gap:.75rem}
.gap-4{gap:1rem}
.gap-6{gap:1.5rem}
.gap-8{gap:2rem}
.gap-12{gap:3rem}

/* Position */
.relative{position:relative}
.absolute{position:absolute}
.fixed{position:fixed}
.sticky{position:sticky}
.inset-0{inset:0}
.top-0{top:0}
.top-4{top:1rem}
.top-24{top:6rem}
.right-0{right:0}
.right-4{right:1rem}
.bottom-0{bottom:0}
.bottom-4{bottom:1rem}
.left-0{left:0}
.left-4{left:1rem}
.z-10{z-index:10}
.z-40{z-index:40}

/* Display */
.block{display:block}
.inline-block{display:inline-block}
.hidden{display:none!important}

/* Overflow */
.overflow-hidden{overflow:hidden}
.overflow-x-auto{overflow-x:auto}

/* ==========================================================================
   4. SIZING
   ========================================================================== */

.w-full{width:100%}
.w-4{width:1rem}.h-4{height:1rem}
.w-5{width:1.25rem}.h-5{height:1.25rem}
.w-6{width:1.5rem}.h-6{height:1.5rem}
.w-7{width:1.75rem}.h-7{height:1.75rem}
.w-8{width:2rem}.h-8{height:2rem}
.w-10{width:2.5rem}.h-10{height:2.5rem}
.w-12{width:3rem}.h-12{height:3rem}
.w-14{width:3.5rem}.h-14{height:3.5rem}
.w-16{width:4rem}.h-16{height:4rem}
.w-20{width:5rem}.h-20{height:5rem}
.w-24{width:6rem}.h-24{height:6rem}
.w-32{width:8rem}.h-32{height:8rem}
.w-48{width:12rem}.h-48{height:12rem}
.w-64{width:16rem}.h-64{height:16rem}
.w-96{width:24rem}.h-96{height:24rem}
.h-28{height:7rem}
.h-full{height:100%}
.min-h-screen{min-height:100vh}
.min-h-\[90vh\]{min-height:90vh}
.min-h-\[70vh\]{min-height:70vh}
.max-w-none{max-width:none}
.max-w-xs{max-width:20rem}
.max-w-sm{max-width:24rem}
.max-w-md{max-width:28rem}
.max-w-lg{max-width:32rem}
.max-w-xl{max-width:36rem}
.max-w-2xl{max-width:42rem}
.max-w-3xl{max-width:48rem}
.max-w-4xl{max-width:56rem}
.max-w-5xl{max-width:64rem}
.object-cover{object-fit:cover}

/* Aspect ratios */
.aspect-\[4\/3\]{aspect-ratio:4/3}
.aspect-\[2\/1\]{aspect-ratio:2/1}
.aspect-\[16\/10\]{aspect-ratio:16/10}

/* ==========================================================================
   5. SPACING
   ========================================================================== */

/* Margin */
.m-0{margin:0}
.-mt-8{margin-top:-2rem}
.mt-1{margin-top:.25rem}
.mt-2{margin-top:.5rem}
.mt-4{margin-top:1rem}
.mt-6{margin-top:1.5rem}
.mt-8{margin-top:2rem}
.mt-10{margin-top:2.5rem}
.mt-12{margin-top:3rem}
.mb-1{margin-bottom:.25rem}
.mb-2{margin-bottom:.5rem}
.mb-3{margin-bottom:.75rem}
.mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem}
.mb-8{margin-bottom:2rem}
.mb-10{margin-bottom:2.5rem}
.mb-12{margin-bottom:3rem}
.mb-16{margin-bottom:4rem}
.mb-20{margin-bottom:5rem}
.mx-2{margin-left:.5rem;margin-right:.5rem}

/* Padding */
.p-4{padding:1rem}
.p-6{padding:1.5rem}
.p-8{padding:2rem}
.p-12{padding:3rem}
.px-3{padding-left:.75rem;padding-right:.75rem}
.px-4{padding-left:1rem;padding-right:1rem}
.px-5{padding-left:1.25rem;padding-right:1.25rem}
.px-6{padding-left:1.5rem;padding-right:1.5rem}
.px-8{padding-left:2rem;padding-right:2rem}
.px-10{padding-left:2.5rem;padding-right:2.5rem}
.py-1{padding-top:.25rem;padding-bottom:.25rem}
.py-2{padding-top:.5rem;padding-bottom:.5rem}
.py-3{padding-top:.75rem;padding-bottom:.75rem}
.py-4{padding-top:1rem;padding-bottom:1rem}
.py-8{padding-top:2rem;padding-bottom:2rem}
.py-12{padding-top:3rem;padding-bottom:3rem}
.py-16{padding-top:4rem;padding-bottom:4rem}
.py-20{padding-top:5rem;padding-bottom:5rem}
.py-24{padding-top:6rem;padding-bottom:6rem}
.pt-0{padding-top:0}
.pt-4{padding-top:1rem}
.pt-6{padding-top:1.5rem}
.pt-8{padding-top:2rem}
.pb-6{padding-bottom:1.5rem}
.pr-4{padding-right:1rem}

/* Space-y */
.space-y-1>*+*{margin-top:.25rem}
.space-y-2>*+*{margin-top:.5rem}
.space-y-3>*+*{margin-top:.75rem}
.space-y-4>*+*{margin-top:1rem}
.space-y-6>*+*{margin-top:1.5rem}
.space-y-8>*+*{margin-top:2rem}

/* ==========================================================================
   6. COLORS (Dark luxury palette)
   ========================================================================== */

/* Background */
.bg-dark{background-color:#0a0a0a}
.bg-darker{background-color:#050505}
.bg-card{background-color:rgba(255,255,255,.02)}

/* Map old Tailwind names to new dark palette */
.bg-white{background-color:#161616}
.bg-gray-50{background-color:#111}
.bg-gray-100{background-color:#1a1a1a}
.bg-cream{background-color:#111}
.bg-navy{background-color:#0a0a0a}
.bg-navy\/5{background-color:rgba(10,10,10,.5)}
.bg-navy\/10{background-color:rgba(10,10,10,.7)}
.bg-navy\/80{background-color:rgba(10,10,10,.8)}
.bg-navy\/90{background-color:rgba(10,10,10,.9)}

.bg-gold{background-color:#c9a84c}
.bg-gold\/5{background-color:rgba(201,168,76,.05)}
.bg-gold\/10{background-color:rgba(201,168,76,.1)}
.bg-gold\/20{background-color:rgba(201,168,76,.2)}

.bg-green-50{background-color:rgba(46,160,67,.08)}
.bg-green-100{background-color:rgba(46,160,67,.12)}
.bg-green-500{background-color:#2ea043}
.bg-blue-600{background-color:#2563eb}
.bg-red-50{background-color:rgba(220,38,38,.08)}
.bg-red-100{background-color:rgba(220,38,38,.12)}

.bg-white\/10{background-color:rgba(255,255,255,.06)}
.bg-white\/90{background-color:rgba(255,255,255,.06)}

/* Text */
.text-white{color:#fff}
.text-white\/40{color:rgba(255,255,255,.4)}
.text-white\/50{color:rgba(255,255,255,.5)}
.text-white\/60{color:rgba(255,255,255,.6)}
.text-white\/70{color:rgba(255,255,255,.7)}
.text-white\/80{color:rgba(255,255,255,.8)}
.text-white\/90{color:rgba(255,255,255,.9)}

.text-gold{color:#c9a84c}
.text-gold\/20{color:rgba(201,168,76,.2)}
.text-navy{color:#c9a84c} /* remap navy text to gold for dark theme */

/* Remap gray text for dark theme readability */
.text-gray-500{color:rgba(255,255,255,.5)}
.text-gray-600{color:rgba(255,255,255,.6)}
.text-gray-700{color:rgba(255,255,255,.7)}
.text-gray-800{color:rgba(255,255,255,.85)}
.text-gray-900{color:#fff}
.text-warm-gray{color:rgba(255,255,255,.5)}

.text-green-500{color:#2ea043}
.text-green-600{color:#2ea043}
.text-green-700{color:#2ea043}
.text-green-800{color:#2ea043}
.text-red-500{color:#ef4444}
.text-red-600{color:#dc2626}
.text-red-700{color:#dc2626}
.text-red-800{color:#dc2626}

/* ==========================================================================
   7. BORDERS + DECORATIONS
   ========================================================================== */

.border{border-width:1px;border-style:solid;border-color:rgba(201,168,76,.12)}
.border-0{border:0}
.border-2{border-width:2px;border-style:solid}
.border-t{border-top:1px solid rgba(201,168,76,.08)}
.border-l-4{border-left:4px solid}

.border-gold{border-color:#c9a84c}
.border-gray-100{border-color:rgba(201,168,76,.08)}
.border-gray-200{border-color:rgba(201,168,76,.1)}
.border-gray-300{border-color:rgba(201,168,76,.12)}
.border-transparent{border-color:transparent}
.border-green-200{border-color:rgba(46,160,67,.25)}
.border-red-200{border-color:rgba(220,38,38,.25)}
.border-white\/5{border-color:rgba(255,255,255,.05)}
.border-white\/10{border-color:rgba(255,255,255,.1)}
.border-white\/20{border-color:rgba(255,255,255,.15)}
.border-white\/30{border-color:rgba(255,255,255,.2)}

.rounded{border-radius:.25rem}
.rounded-lg{border-radius:.5rem}
.rounded-xl{border-radius:.75rem}
.rounded-2xl{border-radius:1rem}
.rounded-full{border-radius:9999px}

/* Shadows (adjusted for dark theme) */
.shadow-sm{box-shadow:0 1px 3px rgba(0,0,0,.3)}
.shadow-lg{box-shadow:0 10px 30px rgba(0,0,0,.4)}
.shadow-xl{box-shadow:0 20px 40px rgba(0,0,0,.5)}

/* Opacity */
.opacity-10{opacity:.1}
.opacity-20{opacity:.2}

/* ==========================================================================
   8. BUTTONS
   ========================================================================== */

.btn-gold{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.5rem;
    background:linear-gradient(135deg,#c9a84c,#b8943f);
    color:#0a0a0a;
    font-weight:600;
    font-size:.9375rem;
    padding:.75rem 1.75rem;
    border-radius:.375rem;
    border:none;
    cursor:pointer;
    transition:all .3s;
    letter-spacing:.02em;
}
.btn-gold:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(201,168,76,.35);
    color:#0a0a0a;
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.5rem;
    background:transparent;
    color:#c9a84c;
    font-weight:600;
    font-size:.9375rem;
    padding:.75rem 1.75rem;
    border-radius:.375rem;
    border:1px solid rgba(201,168,76,.4);
    cursor:pointer;
    transition:all .3s;
    letter-spacing:.02em;
}
.btn-outline:hover{
    background:rgba(201,168,76,.08);
    border-color:#c9a84c;
    transform:translateY(-1px);
}

/* ==========================================================================
   9. CARDS
   ========================================================================== */

.card{
    background:rgba(255,255,255,.02);
    border:1px solid rgba(201,168,76,.08);
    border-radius:.75rem;
    padding:1.5rem;
    transition:all .35s;
}
.card:hover{
    border-color:rgba(201,168,76,.25);
    background:rgba(255,255,255,.04);
    transform:translateY(-2px);
    box-shadow:0 12px 32px rgba(0,0,0,.3);
}

/* Property cards */
.property-card{
    background:rgba(255,255,255,.02);
    border:1px solid rgba(201,168,76,.08);
    border-radius:.75rem;
    overflow:hidden;
    transition:all .35s;
}
.property-card:hover{
    border-color:rgba(201,168,76,.25);
    transform:translateY(-4px);
    box-shadow:0 16px 40px rgba(0,0,0,.35);
}
.property-card .property-image{transition:transform .5s}
.property-card:hover .property-image{transform:scale(1.05)}

.property-card .price-badge{
    position:absolute;
    bottom:.75rem;
    left:.75rem;
    background:rgba(10,10,10,.85);
    backdrop-filter:blur(8px);
    color:#c9a84c;
    font-weight:700;
    font-size:1rem;
    padding:.375rem .75rem;
    border-radius:.375rem;
    border:1px solid rgba(201,168,76,.2);
}

/* ==========================================================================
   10. FORMS
   ========================================================================== */

input[type="text"],input[type="email"],input[type="tel"],input[type="number"],
input[type="search"],input[type="url"],input[type="password"],
select,textarea{
    width:100%;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(201,168,76,.12);
    border-radius:.5rem;
    padding:.75rem 1rem;
    color:#fff;
    font-size:.9375rem;
    transition:border-color .2s,box-shadow .2s;
}
input:focus,select:focus,textarea:focus{
    outline:none;
    border-color:#c9a84c;
    box-shadow:0 0 0 3px rgba(201,168,76,.12);
}
input::placeholder,textarea::placeholder{color:rgba(255,255,255,.3)}
.focus\:border-gold:focus{border-color:#c9a84c}
.focus\:ring-2:focus{box-shadow:0 0 0 2px rgba(201,168,76,.2)}
.focus\:ring-gold:focus,.focus\:ring-gold\/20:focus{box-shadow:0 0 0 3px rgba(201,168,76,.15)}
.ring-gold\/20{box-shadow:0 0 0 2px rgba(201,168,76,.1)}

/* ==========================================================================
   11. HERO
   ========================================================================== */

.hero-section{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}
.hero-section .hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(10,10,10,.92) 0%,rgba(10,10,10,.7) 50%,rgba(10,10,10,.85) 100%);
}

/* ==========================================================================
   12. SECTIONS
   ========================================================================== */

.section-padding{padding:5rem 0}
.section-header{text-align:center;margin-bottom:3.5rem}
.section-header .overline{
    display:inline-block;
    font-size:.75rem;
    font-weight:600;
    letter-spacing:.15em;
    text-transform:uppercase;
    color:#c9a84c;
    margin-bottom:.75rem;
}
.section-header h2{
    font-size:2.25rem;
    margin-bottom:1rem;
}
.section-header .subtitle{
    font-size:1.0625rem;
    color:rgba(255,255,255,.5);
    max-width:36rem;
    margin:0 auto;
}

/* ==========================================================================
   13. GRADIENTS (Tailwind gradient compatibility)
   ========================================================================== */

.bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}
.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}
.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}

.from-navy\/90{--tw-gradient-from:rgba(10,10,10,.9);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,transparent)}
.from-gray-900\/90{--tw-gradient-from:rgba(10,10,10,.92);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,transparent)}
.via-gray-800\/80{--tw-gradient-stops:var(--tw-gradient-from),rgba(17,17,17,.85),var(--tw-gradient-to,transparent)}
.via-transparent{--tw-gradient-stops:var(--tw-gradient-from),transparent,var(--tw-gradient-to,transparent)}
.to-navy\/70{--tw-gradient-to:rgba(10,10,10,.75)}
.to-gray-900\/60{--tw-gradient-to:rgba(10,10,10,.65)}
.to-transparent{--tw-gradient-to:transparent}

/* ==========================================================================
   14. TRANSITIONS + TRANSFORMS
   ========================================================================== */

.transition-all{transition:all .3s}
.transition-colors{transition:color .2s,background-color .2s,border-color .2s}
.transition-shadow{transition:box-shadow .2s}
.transition-transform{transition:transform .3s}
.duration-300{transition-duration:.3s}
.duration-500{transition-duration:.5s}
.transform{transform:translateX(var(--tw-translate-x,0)) translateY(var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) scale(var(--tw-scale-x,1),var(--tw-scale-y,1))}
.cursor-pointer{cursor:pointer}

/* ==========================================================================
   15. ANIMATIONS
   ========================================================================== */

.animate-fade-in{animation:fadeIn .8s ease-out both}
.fade-in{animation:fadeIn .6s ease-out both}
.slide-up{animation:slideUp .6s ease-out both}
.hover-lift{transition:transform .3s}
.hover-lift:hover{transform:translateY(-4px)}

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

/* ==========================================================================
   16. HOVER STATES
   ========================================================================== */

.hover\:bg-gold:hover{background-color:#c9a84c}
.hover\:bg-green-600:hover{background-color:#16a34a}
.hover\:bg-blue-700:hover{background-color:#1d4ed8}
.hover\:bg-navy:hover{background-color:#0a0a0a}
.hover\:bg-navy\/80:hover{background-color:rgba(10,10,10,.8)}
.hover\:bg-navy\/90:hover{background-color:rgba(10,10,10,.9)}
.hover\:bg-navy-dark:hover{background-color:#050505}
.hover\:bg-white\/20:hover{background-color:rgba(255,255,255,.08)}
.hover\:border-gold:hover{border-color:#c9a84c}
.hover\:gap-3:hover{gap:.75rem}
.hover\:shadow-xl:hover{box-shadow:0 20px 40px rgba(0,0,0,.5)}
.hover\:shadow-2xl:hover{box-shadow:0 25px 50px rgba(0,0,0,.6)}
.hover\:text-gold:hover{color:#c9a84c}
.hover\:text-white:hover{color:#fff}
.hover\:text-red-500:hover{color:#ef4444}
.hover\:text-green-400:hover{color:#4ade80}
.hover\:underline:hover{text-decoration:underline}

/* Group hover */
.group:hover .group-hover\:scale-105{transform:scale(1.05)}
.group:hover .group-hover\:text-gold{color:#c9a84c}
.group:hover .group-hover\:text-white{color:#fff}
.group:hover .group-hover\:text-white\/60{color:rgba(255,255,255,.6)}
.group:hover .group-hover\:text-white\/70{color:rgba(255,255,255,.7)}
.group:hover .group-hover\:translate-x-1{transform:translateX(.25rem)}
.group[open] .group-open\:rotate-180{transform:rotate(180deg)}
.group[open] .group-open\:rotate-45{transform:rotate(45deg)}

/* ==========================================================================
   17. BACKDROP + EFFECTS
   ========================================================================== */

.backdrop-blur-sm{backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)}
.blur-3xl{filter:blur(64px)}

/* ==========================================================================
   18. ACCESSIBILITY
   ========================================================================== */

.sr-only{
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    padding:0!important;
    margin:-1px!important;
    overflow:hidden!important;
    clip:rect(0,0,0,0)!important;
    white-space:nowrap!important;
    border:0!important;
}

a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
    outline:2px solid #c9a84c;
    outline-offset:2px;
    border-radius:2px;
}

@media(prefers-reduced-motion:reduce){
    *,*::before,*::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        transition-duration:.01ms!important;
        scroll-behavior:auto!important;
    }
}

/* ==========================================================================
   19. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* SM: 640px */
@media(min-width:640px){
    .sm\:block{display:block}
    .sm\:flex-row{flex-direction:row}
    .sm\:items-center{align-items:center}
    .sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
    .sm\:gap-8{gap:2rem}
    .sm\:text-sm{font-size:.875rem}
    .sm\:text-base{font-size:1rem}
    .sm\:text-lg{font-size:1.125rem}
    .sm\:text-xl{font-size:1.25rem}
    .sm\:text-2xl{font-size:1.5rem}
    .sm\:text-3xl{font-size:1.875rem}
    .sm\:text-4xl{font-size:2.25rem}
    .sm\:text-5xl{font-size:3rem}
    .sm\:p-6{padding:1.5rem}
    .sm\:p-8{padding:2rem}
    .sm\:p-12{padding:3rem}
    .sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}
    .sm\:py-20{padding-top:5rem;padding-bottom:5rem}
    .sm\:mb-12{margin-bottom:3rem}
    .sm\:mb-16{margin-bottom:4rem}
    .sm\:mt-12{margin-top:3rem}
    .sm\:w-20{width:5rem}
    .sm\:w-48{width:12rem}
    .sm\:w-64{width:16rem}
    .sm\:h-20{height:5rem}
    .sm\:h-32{height:8rem}
    .sm\:h-48{height:12rem}
    .sm\:h-64{height:16rem}
    .sm\:rounded-3xl{border-radius:1.5rem}
}

/* MD: 768px */
@media(min-width:768px){
    .md\:block{display:block!important}
    .md\:flex{display:flex!important}
    .md\:hidden{display:none!important}
    .md\:flex-row{flex-direction:row}
    .md\:flex-row-reverse{flex-direction:row-reverse}
    .md\:items-center{align-items:center}
    .md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
    .md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
    .md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
    .md\:col-span-1{grid-column:span 1/span 1}
    .md\:w-1\/2{width:50%}
    .md\:w-12{width:3rem}
    .md\:h-12{height:3rem}
    .md\:h-24{height:6rem}
    .md\:gap-3{gap:.75rem}
    .md\:gap-6{gap:1.5rem}
    .md\:gap-8{gap:2rem}
    .md\:text-base{font-size:1rem}
    .md\:text-xl{font-size:1.25rem}
    .md\:text-2xl{font-size:1.5rem}
    .md\:text-3xl{font-size:1.875rem}
    .md\:text-4xl{font-size:2.25rem}
    .md\:text-5xl{font-size:3rem}
    .md\:text-6xl{font-size:3.75rem}
    .md\:p-8{padding:2rem}
    .md\:p-12{padding:3rem}
    .md\:p-16{padding:4rem}
    .md\:px-6{padding-left:1.5rem;padding-right:1.5rem}
    .md\:px-8{padding-left:2rem;padding-right:2rem}
    .md\:py-4{padding-top:1rem;padding-bottom:1rem}
    .md\:py-24{padding-top:6rem;padding-bottom:6rem}
    .md\:py-32{padding-top:8rem;padding-bottom:8rem}
    .md\:pb-8{padding-bottom:2rem}
    .md\:mb-0{margin-bottom:0}
    .md\:scale-105{transform:scale(1.05)}
    .md\:aspect-auto{aspect-ratio:auto}
}

/* LG: 1024px */
@media(min-width:1024px){
    .lg\:flex{display:flex!important}
    .lg\:hidden{display:none!important}
    .lg\:flex-row{flex-direction:row}
    .lg\:flex-row-reverse{flex-direction:row-reverse}
    .lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
    .lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
    .lg\:col-span-1{grid-column:span 1/span 1}
    .lg\:col-span-2{grid-column:span 2/span 2}
    .lg\:w-1\/3{width:33.333%}
    .lg\:w-2\/3{width:66.667%}
    .lg\:w-72{width:18rem}
    .lg\:text-7xl{font-size:4.5rem}
    h1{font-size:3rem}
    h2{font-size:2.5rem}
}

/* XL: 1280px */
@media(min-width:1280px){
    .container{padding:0 2rem}
    h1{font-size:3.5rem}
}

/* ==========================================================================
   20. ADDITIONAL UTILITY TRANSLATIONS
   ========================================================================== */

.-translate-x-1\/2{transform:translateX(-50%)}
.translate-x-1\/2{transform:translateX(50%)}
.-translate-y-1\/2{transform:translateY(-50%)}
.translate-y-1\/2{transform:translateY(50%)}
.list-none{list-style:none}

/* ==========================================================================
   21. CUSTOM COMPONENT: Section Separators
   ========================================================================== */

.gold-line{
    width:60px;
    height:2px;
    background:linear-gradient(90deg,#c9a84c,#b8943f);
    margin:0 auto 1.5rem;
}

.gold-line-left{
    width:60px;
    height:2px;
    background:linear-gradient(90deg,#c9a84c,#b8943f);
    margin-bottom:1.5rem;
}

/* ==========================================================================
   22. PRINT
   ========================================================================== */

@media print{
    body{background:#fff;color:#000}
    .nav-main,.top-bar,footer,.whatsapp-float,.mobile-overlay{display:none!important}
}
