.elementor-243 .elementor-element.elementor-element-7d626a7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:1024px){.elementor-243 .elementor-element.elementor-element-7d626a7{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}@media(max-width:767px){.elementor-243 .elementor-element.elementor-element-7d626a7{--margin-top:0rem;--margin-bottom:0rem;--margin-left:0rem;--margin-right:0rem;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-243 .elementor-element.elementor-element-2d43065{padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-2d43065 */:root {
    --agh-bg: rgba(251, 249, 245, 0.85); /* Semi-transparent surface */
    --agh-text: #1b1c1a;
    --agh-text-muted: #7f766a;
    --agh-primary: #8a4f35;
    --agh-primary-hover: #6d3820;
    --agh-font-serif: 'Noto Serif', serif;
    --agh-font-sans: 'Inter', sans-serif;
}

/* --- Main Header Wrapper --- */
.ag-master-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--agh-bg);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Glassmorphism effect triggers on scroll via JS */
.ag-master-header.is-scrolled {
    background-color: var(--agh-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.ag-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
}

@media (min-width: 768px) {
    .ag-header-container { padding: 1.5rem 3rem; }
}

/* --- Logo --- */
.ag-logo {
    font-family: var(--agh-font-serif);
    font-size: 1.125rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--agh-text);
    text-decoration: none;
    z-index: 101; /* Stays above mobile menu */
    position: relative;
    display: flex;
    align-items: center;
}

.ag-logo img {
    max-height: 120px; /* Adjust this to make your logo bigger or smaller */
    width: auto;
    object-fit: contain;
    
}

/* --- Desktop Navigation --- */
.ag-desktop-nav {
    display: none;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .ag-desktop-nav { display: flex; }
}

.ag-nav-link {
    font-family: var(--agh-font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.ag-nav-link:hover, .ag-nav-link.active {
    color: var(--agh-primary);
}

/* Elegant Animated Underline for Desktop Hover */
.ag-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--agh-primary);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ag-nav-link:hover::after, .ag-nav-link.active::after {
    width: 100%;
}

/* --- Actions Area (Button & Toggle) --- */
.ag-header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 101; /* Stays above mobile menu */
    position: relative;
}

.ag-header-btn {
    display: none;
    background-color: var(--agh-primary);
    color: #ffffff;
    font-family: var(--agh-font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border: 1px solid var(--agh-primary);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .ag-header-btn { display: inline-block; }
}

.ag-header-btn:hover {
    background-color: transparent;
    color: var(--agh-primary);
}

/* --- Mobile SVG Toggle Button --- */
.ag-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--agh-text);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    
}

@media (min-width: 1024px) {
    .ag-mobile-toggle { display: none; }
}

.ag-mobile-toggle svg {
    position: absolute;
    transition: all 0.3s ease-in-out;
}

/* Base states */
.ag-mobile-toggle .icon-close {
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
}

/* Active states (when menu is open) */
.ag-mobile-toggle.is-active .icon-menu {
    opacity: 0;
    transform: scale(0.5) rotate(45deg);
}

.ag-mobile-toggle.is-active .icon-close {
    opacity: 1;
    transform: scale(1) rotate(0);
}

/* --- Mobile Full-Screen Menu --- */
.ag-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fbf9f5;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 3rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ag-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ag-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.ag-mobile-link {
    font-family: var(--agh-font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--agh-text-muted);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.ag-mobile-link.active, .ag-mobile-link:hover {
    color: var(--agh-primary);
    padding-left: 1rem;
    font-style: italic;
}

.ag-mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-top: 1px solid #d1c5b8;
    padding-top: 2rem;
}

.ag-mobile-btn {
    display: inline-block;
    text-align: center;
    background-color: var(--agh-primary);
    color: #ffffff;
    font-family: var(--agh-font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2rem;
}

.ag-mobile-socials {
    display: flex;
    gap: 1.5rem;
}

.ag-mobile-socials a {
    font-family: var(--agh-font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--agh-text-muted);
    text-decoration: none;
}/* End custom CSS */