

/* Font loader */
@import "fontload.css";



/* ===========================
   Global Styles - Shared across all pages
   =========================== */

:root {
    --color-cream: #FAF7F2;
    --color-cream-dark: #F0EBE3;
    --color-sage: #A8B5A0;
    --color-sage-light: #C5CFBF;
    --color-sage-dark: #7A8A70;
    --color-terracotta: #C8907A;
    --color-terracotta-dark: #A67560;
    --color-charcoal: #2C2C2C;
    --color-charcoal-light: #4A4A4A;
    --color-white: #FFFFFF;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}



/* ===========================
  MOBILE CONTROLLER
   =========================== */


@media (min-width: 300px) {.mobile{display:block;}}
@media (min-width: 900px) {.mobile{display:none;}}

@media (min-width: 300px) {.desktop{display:none;}}
@media (min-width: 900px) {.desktop{display:block;}}







/* Smooth scroll offset for fixed header */
section[id] {
    /* scroll-margin-top: 100px; */
	scroll-margin-top: 60px;
}


@media (max-width: 900px) {section[id] {scroll-margin-top: 60px;}}


/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
    font-size: 1.05rem;
    color: var(--color-charcoal-light);
}

a {
    color: inherit;
    text-decoration: none;
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 144, 122, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-charcoal);
}

.btn-secondary:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-terracotta);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--color-terracotta);
}

/* ===========================
   Navigation
   =========================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.nav-logo-subtitle {
    font-size: 0.75rem;
    color: var(--color-charcoal-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    /* gap: 2.5rem; */
    list-style: none;
}
@media (min-width: 901px) {.nav-links {gap: 0.5rem;}}
@media (min-width: 980px) {.nav-links {gap: 1.5rem;}}
@media (min-width: 1199px) {.nav-links {gap: 2.5rem;}}




.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-charcoal-light);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--color-charcoal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.5s var(--ease-out-expo);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        font-family: var(--font-display);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .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);
    }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--color-charcoal);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-white);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-links li {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-white);
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

/* ===========================
   Scroll Reveal Animations
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}





/* ===========================
   XI DESIGN WITH HEART
   =========================== */
   
.xilink{color: rgba(255,255,255,0.4);font-size: 0.9rem;}
.xiherz {
  width: 15px !important;
  display: inline !important;
  filter: invert(0.5);
  transform: translate(0%, 20%);
}
   
@media (max-width:767px){
.xilink{display: block;}
}









/* ===========================
   GMAPS
   =========================== */

	
	.gmaps-placeholder {

		padding:100px 20px;
		text-align: center;
		border: 0px solid #ccc;
	}
	.gmaps-placeholder button {
		padding: 10px 16px;
		cursor: pointer;
		background: #000;
	}
	.gmaps-note {
		font-size: 0.9em;
		margin-top: 10px;
	}
.gmaps-note  a{
		color: #000;
	}
	

/* ====================================================================================================================== */
/* Iframe Responsive CLASSES */
/* ====================================================================================================================== */	

	/* .responsiveContainer { */
	  /* position: relative; */
	  /* height: 0; */
	  /* overflow: hidden; */
	  /* aspect-ratio : 1 / 1; */
	/* } */
	/* @media(min-width:300px) {.responsiveContainer {padding-bottom: 100%;}} */
	/* @media(min-width:768px) {.responsiveContainer {padding-bottom: 60%;}} */
	/* @media(min-width:992px) {.responsiveContainer {padding-bottom: 40%;}} */
	/* @media(min-width:1200px) {.responsiveContainer {padding-bottom: 100%;}} */

	/* .responsiveContainer iframe { */
	  /* position: absolute; */
	  /* top: 0; */
	  /* left: 0; */
	  /* width: 100%; */
	 
	/* } */
	/* @media(min-width:300px) {.responsiveContainer iframe { height: 450px;}} */
	/* @media(min-width:768px) {.responsiveContainer iframe { height: 100%;}} */