/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• BASE VARIABLES & IMPORTS â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
    --bg-color: #F2ECE0;
    --bg-beige: #F3EFE7;
    --bg-white: #FFFFFF;
    --accent-color: #691D2D;
    --accent-gold: #C2964E;
    --text-dark: #2C2C2C;
    --text-medium: #555555;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-signature: 'Mrs Saint Delafield', cursive;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--accent-color);
    margin-top: 0;
}

.accent-italic {
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 600;
}

.section-padding {
    padding: 6rem 5%;
}

.bg-beige {
    background-color: var(--bg-beige);
}

.bg-white {
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.subtext {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-top: 1rem;
    font-weight: 500;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• HERO SECTION â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.privacy-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        135deg,
        rgba(77,21,32,.88) 0%,
        rgba(110,31,43,.65) 55%,
        rgba(26,16,16,.50) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• COMMITMENT SECTION â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.commitment-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.commitment-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.commitment-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-bottom: 2rem;
}

.commitment-text p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• ACCORDION SECTION â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.details-section {
    background: linear-gradient(135deg, #1A1010 0%, #310a12 100%) !important;
    color: var(--bg-white);
}

.details-section .section-header {
    margin-bottom: 4rem;
}

.details-section h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--bg-white);
}

.details-section .subtext {
    color: var(--accent-gold);
}

.accordion-container {
    max-width: 850px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(194, 150, 78, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    transform: translateY(-4px);
    border-color: rgba(194, 150, 78, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--bg-white);
    transition: all 0.4s ease;
}

.accordion-header.active {
    background: linear-gradient(90deg, rgba(194,150,78,0.15) 0%, transparent 100%);
    border-left: 4px solid var(--accent-gold);
}

.accordion-header:hover:not(.active) {
    background-color: rgba(194, 150, 78, 0.08);
}

.acc-title {
    display: flex;
    align-items: center;
}

.acc-title i {
    margin-right: 20px;
    color: var(--accent-gold);
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    transition: color 0.4s ease;
}

.accordion-header.active .acc-title i {
    color: var(--accent-gold);
}

.acc-icon {
    color: rgba(255,255,255,0.4);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header:hover .acc-icon,
.accordion-header.active .acc-icon {
    color: var(--accent-gold);
}

.accordion-header.active .acc-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: transparent;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-inner {
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header.active + .accordion-content .content-inner {
    opacity: 1;
    transform: translateY(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• TRUSTED SECTION â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.trusted-section .section-header {
    margin-bottom: 4rem;
}

.trusted-section h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, #310a12 100%);
    padding: 3.5rem 2.5rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(105, 29, 45, 0.15);
    transition: all 0.5s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(105, 29, 45, 0.25);
    border-color: rgba(194, 150, 78, 0.3);
}

.trust-icon {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) translateY(-5px);
}

.trust-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• GLOBAL COMPLIANCE â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.compliance-section .section-header {
    margin-bottom: 4rem;
}

.compliance-section h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.comp-card {
    background: #FDFCF8; /* slightly warmer white */
    padding: 2.5rem 2rem;
    border-radius: 4px;
    border-left: 5px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.comp-card:hover {
    transform: translateY(-5px);
}

.comp-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(194, 150, 78, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.comp-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• QUOTE SECTION â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.quote-card {
    background: var(--bg-white);
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.quote-image {
    flex: 0 0 40%;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-content {
    flex: 1;
    padding: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: rgba(194, 150, 78, 0.2);
    line-height: 1;
    position: absolute;
    top: 2rem;
    left: 3rem;
}

blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--accent-color);
    line-height: 1.6;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 2;
}

.quote-author {
    display: flex;
    flex-direction: column;
}

.quote-author strong {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.quote-author span {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.signature {
    font-family: var(--font-signature);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-top: 1rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• CTA SECTION â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.privacy-cta {
    position: relative;
    padding: 8rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(105, 29, 45, 0.9) 0%, rgba(40, 10, 15, 0.8) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.btn-gold {
    display: inline-block;
    background-color: var(--accent-gold);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-gold:hover {
    background-color: #b08543;
}

.btn-gold i {
    margin-left: 0.5rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trusted-grid, .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-card {
        flex-direction: column;
    }
    
    .quote-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .commitment-text h2, .details-section h2, .trusted-section h2, .compliance-section h2, .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .quote-content {
        padding: 2.5rem;
    }

    .accordion-header {
        padding: 1.5rem;
        font-size: 1.2rem;
    }
    
    .content-inner {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .nav-links:not(.open), .nav-actions { display: none !important; }
    .hamburger { display: flex !important; }
    
    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: #F5EFE6;
        padding: 32px 32px 40px 32px !important;
        border-bottom: 1px solid #EDE5D8;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        gap: 8px;
        align-items: flex-start;
        z-index: 999;
        box-sizing: border-box !important;
    }
    .nav-links.open a {
        color: #1A1010;
        font-size: 15px;
        padding: 10px 16px;
        width: max-content;
        border-radius: 8px;
        box-sizing: border-box;
    }
    .nav-links.open a:hover,
    .nav-links.open a:active,
    .nav-links.open a.active {
        background: #EADCDA !important;
        color: #6E1F2B !important;
    }
    .nav-links.open a.active { font-weight: 600 !important; }
    
    .mobile-only {
        display: block !important;
        width: 100%;
        box-sizing: border-box;
    }
    .mobile-only:first-of-type {
        margin-top: 16px;
    }
    
    .nav-links.open .nav-btn-signin {
        text-align: center;
        border: 1px solid #6E1F2B;
        color: #6E1F2B !important;
        background: transparent !important;
        padding: 14px 16px;
        width: 100%;
        display: block;
        box-sizing: border-box;
        transition: all var(--transition, 0.3s);
    }
    .nav-links.open .nav-btn-signin:hover,
    .nav-links.open .nav-btn-signin:active {
        background: #EADCDA !important;
    }
    .nav-links.open .nav-btn-book {
        text-align: center;
        background: #6E1F2B !important;
        color: #FFFFFF !important;
        border: none;
        padding: 14px 16px;
        width: 100%;
        display: block;
        box-sizing: border-box;
        transition: all var(--transition, 0.3s);
    }
    .nav-links.open .nav-btn-book:hover,
    .nav-links.open .nav-btn-book:active {
        background: #5A1923 !important;
        transform: scale(0.98);
    }
}


/* --- EXACT HOME PAGE NAVBAR AND FOOTER OVERRIDES --- */
.navbar, .footer { font-family: 'Inter', system-ui, sans-serif !important; }
.navbar * { font-family: inherit; }
.footer * { font-family: inherit; }
.nav-links a { font-size: 14px !important; }
.footer-brand p { font-size: 13.5px !important; }
.footer-col h5 { font-size: 11px !important; font-family: 'Inter', system-ui, sans-serif !important; }
.footer-col ul a { font-size: 13.5px !important; }
.contact-list li a, .contact-list li span { font-size: 13.5px !important; }
.footer-hours strong { font-size: 11px !important; font-family: 'Inter', system-ui, sans-serif !important; }
.footer-hours span { font-size: 13px !important; }
.footer-bottom p { font-size: 12.5px !important; }
.footer-legal a { font-size: 12.5px !important; }

/* ─── NEW LOGO STYLING ─── */
.logo-brand {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 64px;
  width: 64px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  box-shadow:
      0 2px 4px rgba(0,0,0,.15),
      0 6px 12px rgba(0,0,0,.18),
      0 14px 28px rgba(0,0,0,.16),
      0 0 0 3px rgba(217,164,65,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-img:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
      0 4px 8px rgba(0,0,0,.18),
      0 10px 20px rgba(0,0,0,.22),
      0 22px 40px rgba(0,0,0,.22),
      0 0 0 3px rgba(217,164,65,.45);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  padding-bottom: 42px;
            padding-top: 42px;
}
.navbar.scrolled {
  background: rgba(245,239,230,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(26,16,16,.1);
}
.nav-inner {
  display: flex; align-items: center;
  gap: 32px;
  max-width: 1280px; width: 100%;
  margin: 0 auto; padding: 0 24px;
}

.nav-links {
  display: flex; align-items: center;
  gap: 4px; flex: 1;
  justify-content: center;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 50px;
  transition: all var(--transition);
  display: block;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a:active, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.14);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a:active,
.navbar.scrolled .nav-links a.active {
  color: var(--maroon);
  background: rgba(110,31,43,.08);
}
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-actions .btn-primary { font-size: 13px; padding: 10px 22px; }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-only { display: none; }

/* ─── FOOTER ─── */
.footer { background: var(--dark); padding-top: 80px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Footer logo image height */
.logo-img-footer {
  height: 72px;
  width: 72px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 24px;
  background: var(--white);
  padding: 8px;
  box-shadow:
      0 3px 6px rgba(0,0,0,.3),
      0 8px 16px rgba(0,0,0,.28),
      0 18px 36px rgba(0,0,0,.24),
      0 0 0 3px rgba(217,164,65,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-img-footer:hover {
  transform: translateY(-3px) scale(1.05);
}
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 300px; margin-bottom: 28px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.social-links a:hover { background: var(--maroon); border-color: var(--maroon); color: var(--white); }

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.contact-list li svg { flex-shrink: 0; color: var(--rust); margin-top: 2px; }
.contact-list li a, .contact-list li span { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.contact-list li a:hover { color: var(--white); }

.footer-hours { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.footer-hours strong { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-hours span { font-size: 13px; color: rgba(255,255,255,.45); }

.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ─── RESPONSIVE / MEDIA QUERIES ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .mobile-only { display: block; width: 100%; margin-top: 8px; }
  
  .nav-btn-signin {
    display: block; text-align: center;
    border: 1px solid var(--maroon); color: var(--maroon) !important;
    border-radius: 50px; padding: 10px 0;
  }
  .nav-btn-book {
    display: block; text-align: center;
    background: var(--maroon) !important; color: var(--white) !important;
    border-radius: 50px; padding: 10px 0;
  }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(245,239,230,.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--ivory-deep);
    box-shadow: var(--shadow-md);
    gap: 4px; align-items: flex-start; z-index: 999;
  }
  .nav-links.open a {
    color: var(--dark); font-size: 15px;
    padding: 12px 16px; width: 100%; border-radius: var(--radius-sm);
  }
  .nav-links.open a:hover, .nav-links.open a.active {
    background: rgba(110,31,43,.08); color: var(--maroon);
  }
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 500px) {
  .nav-actions { display: none; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .logo-img { height: 46px; width: 46px; } /* Slightly smaller logo on extra-small mobile screens */
}

/* Ensure Navbar and Footer use Inter font exactly like the Home page to match sizes */
.navbar, .footer { font-family: var(--font-body) !important; line-height: 1.7 !important; -webkit-font-smoothing: antialiased !important; -moz-osx-font-smoothing: grayscale !important; font-weight: 400 !important; } 

/* Fix missing global resets for navbar and footer */
.navbar a, .footer a { text-decoration: none !important; }
.navbar ul, .footer ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.navbar *, .footer * { box-sizing: border-box !important; }

/* Fix missing global padding/margin resets and container width for footer */
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, .footer p { margin-top: 0 !important; }

.footer .container { max-width: 1280px !important; padding: 0 24px !important; width: 100% !important; }

/* Fix missing responsive media queries for the footer */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 40px !important; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-bottom-inner { flex-direction: column !important; text-align: center !important; }
  .footer-legal { justify-content: center !important; }
}

/* Unify global container to perfectly match home.css */
.container {
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* Variables required by the Navbar and Footer */
:root {
  --maroon:       #6E1F2B;
  --maroon-dark:  #4d1520;
  --maroon-mid:   #8a2535;
  --gold:         #D9A441;
  --gold-muted:   #c4903a;
  --rust:         #A35334;
  --charcoal:     #3A3A3A;
  --charcoal-mid: #555555;
  --ivory:        #F5EFE6;
  --ivory-deep:   #EDE5D8;
  --dark:         #1A1010;
  --text:         #2A1A1A;
  --text-muted:   #7a6a64;
  --white:        #FFFFFF;
  --nav-h:        80px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition:   0.3s ease;
}

/* Restore logo styling that was broken by the aggressive navbar reset */
.navbar .logo, .footer .logo {
    color: var(--white) !important;
    font-family: var(--font-display) !important;
}
.navbar.scrolled .logo {
    color: var(--maroon-dark) !important;
}

/* Reset bottom margin for copyright text */
.footer-bottom p { margin-bottom: 0 !important; }

/* Unify footer link opacities */
.footer-legal a { color: rgba(255, 255, 255, 0.5) !important; }
.footer-legal a:hover { color: var(--white) !important; }


/* Responsive Hero Fix */
@media (max-width: 768px) {
    .privacy-hero {
        height: auto;
        min-height: 40vh;
        padding: 8rem 1.5rem 4rem;
    }
    .privacy-hero .hero-content h1 {
        font-size: 2.5rem;
    }
}


/* Circular logo */
.logo-img, .logo-img-footer { border-radius: 50% !important; object-fit: cover !important; aspect-ratio: 1/1 !important; }

/* NAVBAR SCROLLED OVERRIDE & PREMIUM SECTION ANIMATIONS */
.navbar.scrolled {
  background: rgba(245, 239, 230, .97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(26, 16, 16, .1);
}

.premium-reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.premium-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.premium-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-reveal.in-view .premium-item {
  opacity: 1;
  transform: translateY(0);
}

.premium-reveal.in-view .premium-item:nth-child(1) { transition-delay: 0.1s; }
.premium-reveal.in-view .premium-item:nth-child(2) { transition-delay: 0.2s; }
.premium-reveal.in-view .premium-item:nth-child(3) { transition-delay: 0.3s; }
.premium-reveal.in-view .premium-item:nth-child(4) { transition-delay: 0.4s; }
.premium-reveal.in-view .premium-item:nth-child(5) { transition-delay: 0.5s; }
