
  /* =========================================
     1. CUSTOM FONT IMPORTS
     ========================================= */
  @font-face {
    font-family: 'Manuella';
    /* The browser reads top to bottom and downloads the first one it understands */
    src: url('../fonts/Manuella.woff') format('woff'),
         url('../fonts/Manuella.ttf') format('truetype'),
         url('../fonts/Manuella.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Ensures text is visible while the custom font loads */
  }

  /* =========================================
     2. MODERN CSS RESET
     ========================================= */
  *, *::before, *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;
    padding: 0;
  }

  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased; /* Makes custom fonts look sharper on Macs/iOS */
    -moz-osx-font-smoothing: grayscale;
  }

  /* Make media behave predictably */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }

  /* Ensure form elements inherit your custom typography */
  input, button, textarea, select {
    font: inherit;
  }

  /* Prevent text overflows */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }

  /* =========================================
     3. GLOBAL VARIABLES
     ========================================= */
  :root {
    --bg-color: #ffffff;
    --bg-topbar: #fafafa;
    --text-primary: #1a1a1a;
    --text-secondary: black;
    --border-light: #eaeaea;
    --text-light: white;
    /* Assign Manuella to a variable so we can use it on Headings and the Logo */
    --font-display: 'Manuella', Georgia, serif; 
    
    /* Keep a clean sans-serif for tiny navigation links and paragraphs for readability */
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    
    --transition-speed: 0.4s;
  }

  /* Quick example of applying it to the Logo and Hero Title from our previous code */
  .logo-main, h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight:500;
    /* Note: Custom fonts often require slight sizing adjustments */
  }

  .hero-title {
    font-family: var(--font-display);
  }
  p.sts, .faq-answer-content p, .split-body-text p, .card-info p, p.editorial-text, .kl-founder-body p, .kl-features-intro p, p.kl-box-desc, .card-info p, .kl-process-header p, .kl-tab-body p, .kl-cinematic-section p, .kl-panel-content p, .kl-panel-desc p{
    font-family: var(--font-main, sans-serif);
    font-size: 0.95rem;
    color: var(--text-secondary, #666);
    line-height: 1.6;
    margin: 0;
    text-align:left;
  }
  .concierge-box p.editorial-text{
      text-align:center;
      padding-bottom:3rem;
  }
  .card-info p strong{
      display:block;
      letter-spacing:2px;
  }
  .kl-panel-content p, .kl-cinematic-section .kl-panel-content-bottom p{color:white !important;}
  
  

  /* --- Hero Section Layout --- */
  .hero-section {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem; 
    padding-top:0;
    background-color: var(--bg-color);
  }

  /* --- The Center Photo Wrapper --- */
  .hero-image-wrapper {
    width: 100%;
    height: 80vh; /* Taller now to accommodate the text inside */
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a; 
  }

  /* --- The HTML Image Element --- */
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* Extremely slow, slight zoom for a cinematic feel */
    animation: cinematicZoom 12s ease-out forwards;
    transform: scale(1.08); 
  }

  @keyframes cinematicZoom {
    to { transform: scale(1); }
  }

  /* --- The "Scrim" (Subtle Bottom Gradient for Readability) --- */
  .hero-scrim {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* Only covers the bottom half */
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none; /* Lets clicks pass through to the image if needed */
  }

  /* --- The Content Overlay --- */
  .hero-content-overlay {
    position: absolute;
    bottom: 3rem; /* Anchored nicely at the bottom */
    left: 3rem;   /* Anchored to the left for an editorial look */
    z-index: 2;
    color: var(--text-light);
    max-width: 600px;
    
    /* Fade up animation for the text */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpContent 1.5s ease 0.5s forwards;
  }

  @keyframes fadeUpContent {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-title {
    font-family: var(--font-serif);
    font-size: 3.2rem; /* Slightly smaller so it doesn't dominate */
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
  }

  /* --- Call to Actions --- */
  .hero-ctas {
    display: flex;
    gap: 1.5rem;
  }

  .hero-btn {
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1rem 2rem;
    transition: all var(--transition-speed) ease;
  }

  /* Solid White Button */
  .btn-solid-light {
    background-color: var(--text-light);
    color: var(--text-primary);
    border: 1px solid var(--text-light);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

  .btn-solid-light:hover {
    background-color: transparent;
    color: var(--text-light);
  }

  /* Outline White Button */
  .btn-outline-light {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

  .btn-outline-light:hover {
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* --- Desktop Only (Mobile deferred) --- */
  @media (max-width: 1024px) {
    .hero-section { padding: 0 2.5rem 2.5rem 2.5rem; }
    .hero-content-overlay { left: 2.5rem; bottom: 2.5rem; }
    .hero-title { font-size: 2.5rem; }
  }
  
  
  
  .hero-categories{
      display: flex;
    gap: 1.5rem;
  }
  .hero-categories a{
      color: white;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 01rem;
    text-decoration: none;
  }
  
  
  
  /* --- Global Reset & Typography --- */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }


  /* --- Topbar Layout --- */
  .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 5rem;
    background-color: var(--bg-topbar);
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-main);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .topbar a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: color var(--transition-speed) ease;
  }

  .topbar a:hover {
    color: var(--text-primary);
  }

  .topbar-left, .topbar-right {
    display: flex;
    gap: 2rem; /* Nice wide spacing between items */
  }

  /* --- Main Header Layout (Using CSS Grid for perfect centering) --- */
  .keylight-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Left, Center, Right */
    align-items: center;
    padding: 1.5rem 5rem; /* Reduced padding slightly since Topbar adds height */
    background-color: var(--bg-color);
    font-family: var(--font-main);
    position: relative;
    z-index: 1000;
  }

  /* --- Left Column: Logo --- */
  .header-logo {
    justify-self: start; /* Locks logo to the left */
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .logo-main {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    line-height: 1;
  }

  .logo-sub {
    color: var(--text-secondary);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    padding-left: 0.2em;
  }

  /* --- Center Column: Navigation --- */
  .header-nav {
    justify-self: center; /* Mathematically perfect centering */
  }

  .header-nav ul {
    display: flex;
    gap: 3.5rem;
    list-style: none;
    align-items: center;
  }

  .header-nav li {
    position: relative; 
    padding: 1rem 0; 
  }

  .header-nav > ul > li > a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color var(--transition-speed) ease;
    position: relative;
  }

  .header-nav > ul > li > a::after {
    content: ''; position: absolute; width: 0; height: 1px;
    bottom: -4px; left: 0; background-color: var(--text-primary);
    transition: width var(--transition-speed) ease;
  }

  .header-nav > ul > li > a:hover::after { width: 100%; }

  /* Mega Dropdown */
  .mega-dropdown {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    display: flex; gap: 3rem; padding: 2.5rem 3.5rem;
    opacity: 0; visibility: hidden;
    transition: all var(--transition-speed) ease;
  }

  .header-nav li:hover .mega-dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  }

  .mega-column { display: flex; flex-direction: column; min-width: 160px; }
  .mega-column-title { font-size: 0.7rem; color: var(--text-secondary); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-light); padding-bottom: 0.5rem; }
  .mega-column a { text-decoration: none; color: var(--text-primary); font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 1rem; transition: color 0.3s ease; }
  .mega-column a:hover { color: var(--text-secondary); }

  /* --- Right Column: Action Button --- */
  .header-actions {
    justify-self: end; /* Locks button to the far right */
  }

  .btn-book {
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 0.8rem 2.5rem; /* Slightly wider padding for impact */
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition-speed) ease;
  }

  .btn-book:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
  }

  /* --- Mobile Menu & Responsive Logic --- */
  .mobile-menu-checkbox { display: none; }
  .mobile-menu-btn { display: none; cursor: pointer; z-index: 1002; position: relative; }
  .mobile-menu-btn span { display: block; width: 28px; height: 1px; background-color: var(--text-primary); margin-bottom: 6px; transition: all var(--transition-speed) ease; }

  .mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--bg-color); display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all var(--transition-speed) ease;
    z-index: 1001; overflow-y: auto;
  }

  .mobile-overlay ul { list-style: none; text-align: center; padding: 2rem 0; }
  .mobile-overlay > ul > li { margin: 1.5rem 0; }
  .mobile-overlay a { text-decoration: none; color: var(--text-primary); font-size: 1.5rem; letter-spacing: 0.2em; text-transform: uppercase; }
  .mobile-sub-menu { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.8rem; }
  .mobile-sub-menu a { font-size: 0.9rem; color: var(--text-secondary); letter-spacing: 0.1em; }

  /* Mobile Social & Contact Info inside the menu */
  .mobile-contact-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .mobile-contact-info a { font-size: 0.85rem; color: var(--text-secondary); }
  .mobile-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .mobile-menu-checkbox:checked ~ .mobile-overlay { opacity: 1; visibility: visible; }
  .mobile-menu-checkbox:checked ~ .mobile-menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-checkbox:checked ~ .mobile-menu-btn span:nth-child(2) { opacity: 0; }
  .mobile-menu-checkbox:checked ~ .mobile-menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Breakpoints */
  @media (max-width: 1024px) {
    /* Hide topbar on mobile/tablet to save screen real estate */
    .topbar { display: none; }
    
    /* Revert grid to flex so menu button aligns properly */
    .keylight-header { 
      display: flex; 
      justify-content: space-between;
      padding: 2rem 2.5rem; 
    }
    
    .header-nav { display: none; }
    .header-actions { display: none; }
    .mobile-menu-btn { display: block; }
  }
  
  
/* --- Outer Section --- */
.faq-editorial-section {
    
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem; 
    background-color: var(--bg-color);
    box-sizing: border-box;
}

/* --- Split Layout Grid --- */
.faq-split-layout {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem; /* Reduced from 6rem for a more cohesive unit */
    align-items: start;
}

/* --- Left Column: Sticky Content --- */
.faq-sticky-content {
    position: sticky;
    top: 100px; 
}

.faq-header {
    margin-bottom: 1.5rem;
}

.faq-editorial-section .eyebrow-text {
    font-family: var(--font-main);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 1.25rem;
}

.faq-editorial-section .faq-main-title {
    font-family: var(--font-display); 
    font-size: 3.2rem; /* Adjusted down slightly so it's not overpowering */
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 0 0 1rem 0;
}

.faq-contact-prompt p {
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 90%;
}

/* Premium Solid Button */
.btn-solid {
    display: inline-block;
    background-color: var(--text-primary);
    color: var(--bg-color);
    font-family: var(--font-main);
    text-transform: uppercase;
        letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.8rem 2.5rem;
    text-decoration: none;
    border: 1px solid var(--text-primary);
    transition: background-color var(--transition-speed), color var(--transition-speed);
    margin-bottom: 2.5rem;
    text-align: center;
}
.btn-light{
    background: white;
    border: 1px solid white;
    color: black;
    margin-bottom: 0;
}
.btn-solid.btn-light:hover{
    background-color: black;
    color:white;
    border:1px solid black;
}
.btn-trans{
    background: transparent;
    border: 1px solid white;
    color: white;
    margin-bottom: 0;
}
.btn-solid.btn-trans:hover{
    background:white;
    border:1px solid white;
    color:black;
}

.btn-solid:hover {
    background-color: transparent;
    color: var(--text-primary);
}

/* Contact Links */
.faq-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.faq-link {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    align-self: flex-start;
    transition: border-color var(--transition-speed);
}

.faq-link:hover {
    border-color: var(--text-primary);
}

/* --- Right Column: The Accordion --- */
.faq-accordion {
    border-top: 1px solid var(--text-primary); /* Thinner, sharper top border */
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0; /* Reduced padding: much tighter, premium spacing */
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    outline: none;
}

.faq-question-text {
    font-family: var(--font-display); /* Swapped to the Display Serif Font */
    font-size: 1.6rem; /* Perfect size for the serif */
    font-weight: 400;
    text-align: left;
    padding-right: 2rem;
    line-height: 1.3;
    transition: color var(--transition-speed);
}

.faq-trigger:hover .faq-question-text {
    color: var(--text-secondary);
}

/* Luxury Plus/Minus Icon */
.faq-icon {
    position: relative;
    width: 12px; /* Smaller, more delicate icon */
    height: 12px;
    flex-shrink: 0;
}

.faq-line {
    position: absolute;
    background-color: var(--text-primary);
    transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-line.horizontal { width: 100%; height: 1px; } /* Crisp 1px lines */
.faq-line.vertical { width: 1px; height: 100%; }

.faq-item.is-open .faq-line.vertical {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Accordion Animation */
.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-panel {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-content {
    padding-bottom: 2rem; /* Tighter bottom space inside the open panel */
    font-family: var(--font-main);
    font-size: 0.95rem; /* Slightly refined text size */
    line-height: 1.7;
    color: var(--text-secondary);
    padding-right: 3rem; /* Keeps paragraph text beautifully formatted */
}

.faq-answer-content p {
    margin: 0 0 1rem 0;
}
.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .faq-editorial-section {
        padding: 0 3rem 3rem 3rem;
    }
    .faq-split-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .faq-sticky-content {
        position: relative; 
        top: 0;
    }
    .faq-editorial-section .faq-main-title {
        font-size: 2.8rem;
    }
    .btn-solid {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 600px) {
    .faq-editorial-section {
        padding: 0 1.5rem 3rem 1.5rem;
    }
    .faq-editorial-section .faq-main-title {
        font-size: 2.3rem;
    }
    .faq-question-text {
        font-size: 1.3rem; /* Adjusted for mobile */
    }
    .faq-trigger {
        padding: 1.25rem 0;
    }
}

/* --- Outer Section --- */
.keylight-split-section {
    
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem; 
    background-color: var(--bg-color);
    box-sizing: border-box;
}

/* --- Grid Layout --- */
.split-inner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center; /* Vertically centers the text with the image */
}

/* --- Left: Image Styling --- */
.split-image-col {
    width: 100%;
}

.split-image-wrapper {
    margin: 0;
    position: relative;
    aspect-ratio: 4 / 5; /* Creates that premium vertical portrait shape */
    overflow: hidden;
    background-color: var(--bg-topbar);
}

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

/* Very subtle luxury zoom on hover */
.split-image-wrapper:hover .split-img {
    transform: scale(1.03);
}

/* --- Right: Content Styling --- */
.split-content-inner {
    max-width: 550px; /* Keeps the reading measure comfortable */
}

.keylight-split-section .eyebrow-text {
    font-family: var(--font-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 1.5rem;
}

.split-main-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 0 0 2rem 0;
}

.split-body-text {
    font-family: var(--font-main);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.split-body-text p {
    margin: 0 0 1.5rem 0;
}
.split-body-text p:last-child {
    margin-bottom: 0;
}

/* --- Buttons --- */
.split-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-outline {
    font-family: var(--font-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    text-align: center;
}

/* Secondary Button (Outlined) */
.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--text-primary);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .keylight-split-section {
        padding: 5rem 3rem;
    }
    .split-inner-container {
        grid-template-columns: 1fr; /* Stacks the layout */
        gap: 3rem;
    }
    .split-content-inner {
        max-width: 100%;
        text-align: center; /* Center text on tablets */
    }
    .split-actions {
        justify-content: center;
    }
    .split-image-wrapper {
        aspect-ratio: 16 / 9; /* Wider crop for stacked layouts */
    }
}

@media (max-width: 600px) {
    .keylight-split-section {
        padding: 3rem 1.5rem;
    }
    .split-main-title {
        font-size: 2.8rem;
    }
    .split-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .split-image-wrapper {
        aspect-ratio: 4 / 5; /* Return to portrait on phones */
    }
}

/* --- Section 2: Expansive Gallery --- */
  .venue-gallery-section { 
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem;  }
  .venue-gallery { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
  .venue-gallery img { width: 100%; height: 500px; object-fit: cover; }
  .venue-gallery img:first-child { grid-column: span 2; }

  /* --- Responsive Breakpoints --- */
  @media (max-width: 1024px) {
    .venue-intro-section, .venue-faq-section { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 2.5rem; }
    .venue-gallery-section, .venue-weddings-section { padding: 3rem 2.5rem; }
    .venue-gallery { grid-template-columns: 1fr 1fr; }
    .venue-gallery img:first-child { grid-column: span 1; }
    .weddings-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .venue-gallery, .weddings-grid { grid-template-columns: 1fr; }
    .venue-hero-content { padding: 0 1.5rem 3rem 1.5rem; }
    .venue-title { font-size: 3rem; }
    .venue-details-box { padding: 2rem; }
  }
  
  
  /* --- The Experience Section --- */
  .experience-section {
    background-color: var(--bg-color);
    padding: 8rem 5rem; /* Massive white space to let the text breathe */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .experience-content {
    max-width: 700px; /* Keeps the text lines short and easy to read */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Delicate vertical line to draw the eye down from the Hero section */
  .experience-divider {
    width: 1px;
    height: 60px;
    background-color: var(--text-primary);
    margin-bottom: 2.5rem;
  }

  /* The "Overline" for context */
  .experience-overline {
    font-family: var(--font-main);
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
  }

  /* The Main Impact Headline */
  .experience-title {
    font-family: var(--font-display); /* Using your new Manuella font! */
    font-size: 3rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 2rem;
  }

  /* The Distilled, Snappy Paragraph */
  .experience-text {
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  /* Highlight text within the paragraph */
  .experience-text strong {
    color: var(--text-primary);
    font-weight: 500;
  }

  /* The Signature */
  .experience-signature {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 3.5rem;
  }

  /* The Button (Reusing our previous button style, but adapted) */
  .btn-outline-dark {
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1rem 2.5rem;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    transition: all var(--transition-speed) ease;
  }

  .btn-outline-dark:hover {
    border-color: var(--text-primary);
  }

  /* --- Responsive Breakpoints --- */
  @media (max-width: 1024px) {
    .experience-section {
      padding: 6rem 2.5rem;
    }
    .experience-title {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 768px) {
    .experience-section {
      padding: 5rem 1.5rem;
    }
    .experience-title {
      font-size: 2rem;
    }
    .experience-text {
      font-size: 0.85rem;
      text-align: justify; /* Sometimes nice on mobile, or keep centered */
      text-align-last: center; 
    }
  }
  
  /* --- The Services Section Layout --- */
  .services-section {
    background-color: var(--bg-color);
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem;
    padding-right:0;
    overflow: hidden;
  }

  /* --- Section Header --- */
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 5rem; /* Brings the right side back in line with the page */
    margin-bottom: 3rem;
  }

  .services-title {
    font-family: var(--font-display); /* Using Manuella */
    font-size: 3rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.1;
  }

  .services-subtitle {
    font-family: var(--font-main);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 0.5rem;
    display: block;
  }

  /* "View All" Link in Header */
  .link-view-all {
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 0.8rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--text-primary);
    transition: color var(--transition-speed) ease, border-color var(--transition-speed) ease;
  }

  .link-view-all:hover {
    color: var(--text-secondary);
    border-color: var(--text-secondary);
  }

  /* --- The Horizontal Scroller --- */
  .services-scroller {
    display: flex;
    gap: 3rem; /* Space between cards */
    overflow-x: auto;
    /* This creates the magnetic snap effect */
    scroll-snap-type: x mandatory; 
    padding-right: 5rem; /* Ensures the last item doesn't get stuck to the screen edge */
    padding-bottom: 2rem; /* Room for hover shadows if needed */
    
    /* Hides the ugly default scrollbar but keeps the functionality */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  .services-scroller::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
  }

  /* --- Individual Service Cards --- */
  .service-card {
    /* Flex-basis sets the width. They won't shrink, forcing the horizontal scroll */
    flex: 0 0 400px; 
    scroll-snap-align: start; /* The magnetic snap point */
    display: flex;
    flex-direction: column;
    text-decoration: none; /* Makes the whole card clickable */
    group: hover; /* For nested hover effects */
  }

  .card-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4; /* Tall, editorial portrait orientation */
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #f4f4f4;
  }

  .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease; /* Smooth image zoom on hover */
  }

  .service-card:hover .card-image {
    transform: scale(1.05);
  }

  .card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 400;
  }

  .card-action {
    font-family: var(--font-main);
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-speed) ease;
  }

  /* A little arrow that moves on hover */
  .card-action::after {
    content: '→';
    font-size: 1rem;
    transition: transform var(--transition-speed) ease;
  }

  .service-card:hover .card-action {
    color: var(--text-primary);
  }

  .service-card:hover .card-action::after {
    transform: translateX(5px);
  }

  /* --- Responsive Breakpoints --- */
  @media (max-width: 1024px) {
    .services-section {
      padding: 5rem 0 5rem 2.5rem;
    }
    .services-header {
      padding-right: 2.5rem;
    }
    .service-card {
      flex: 0 0 320px; /* Slightly smaller cards on tablets */
    }
  }

  @media (max-width: 768px) {
    .services-section {
      padding: 3rem 0 3rem 1.5rem;
    }
    .services-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
      padding-right: 1.5rem;
      margin-bottom: 2.5rem;
    }
    .services-title {
      font-size: 2.2rem;
    }
    .service-card {
      /* On mobile, card takes up 80% of screen width so they clearly see there is more to scroll */
      flex: 0 0 80vw; 
    }
  }
  /* --- Progress & Hint Container --- */

/* --- Progress & Hint Container --- */
.scroller-metadata {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5rem 0 0;
  max-width: 1400px;
  margin: 0 auto;
}

.scroll-progress-container {
  flex-grow: 1;
  height: 1px;
  background-color: var(--border-light);
  margin-right: 3rem; /* Desktop spacing */
  position: relative;
}

.scroll-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%; 
  background-color: var(--text-primary);
  transition: width 0.2s ease-out;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* --- Mobile Specific Layout --- */
@media (max-width: 768px) {
  .scroller-metadata {
    padding: 2rem 1.5rem 0 1.5rem;
    flex-direction: column; /* Stack the bar and text */
    align-items: stretch;   /* Allow the bar to be full width */
    gap: 1rem;              /* Space between bar and text */
  }
  
  .scroll-progress-container {
    margin-right: 0;        /* Remove desktop margin */
    width: 100%;
  }
  
  .scroll-hint {
    justify-content: flex-end; /* Align text to the right */
    align-self: flex-end;
  }

  .hint-text {
    font-size: 0.6rem;      /* Slightly smaller for mobile elegance */
  }
}
.hint-text {
  font-family: var(--font-main);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.hint-line {
  width: 40px;
  height: 1px;
  background-color: var(--text-secondary);
  position: relative;
  overflow: hidden;
}

/* The actual "swipe" animation line */
.hint-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--text-primary);
  animation: swipeHint 2.5s infinite;
}

@keyframes swipeHint {
  0% { left: -100%; }
  30% { left: 100%; }
  100% { left: 100%; }
}

/* --- Responsive "Peek" Updates --- */
@media (max-width: 768px) {
  .scroller-metadata {
    padding: 2rem 1.5rem 0 1.5rem;
  }
  
  .service-card {
    /* Changing from 80vw to 72vw makes the "peek" of the next card much more obvious */
    flex: 0 0 72vw; 
  }
  
  .scroll-progress-container {
    margin-right: 2rem;
  }
}

/* --- Cinematic Hero --- */
  .about-hero { position: relative; width: 100%; height: 65vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background-color: var(--text-primary); }
  .about-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.7; }
  .about-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%); z-index: 1; }
  .about-hero-content { position: relative; z-index: 2; padding: 0 2rem; color: #ffffff; }
  .about-title { font-family: var(--font-display); font-size: 5rem; font-weight: 400; line-height: 1; margin-bottom: 0.5rem; color: #ffffff; }
  @media (max-width: 768px) {
    .about-title { font-size: 3.5rem; }
  }
  
  
/* --- Core Section Setup (Using your variables) --- */
.kl-pricing-section {
    
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem; 
    background-color: var(--bg-color);
    box-sizing: border-box;
}

.kl-pricing-container {
    margin: 0 auto;
}

/* --- Header --- */
.kl-pricing-header {
    text-align: center;
    margin-bottom: 5rem;
}

/* Inheriting your global eyebrow styling */
.kl-pricing-header .eyebrow-text {
    display: block;
    margin-bottom: 1rem;
}

.kl-pricing-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.1;
}

/* --- The Grid --- */
.kl-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

/* --- The Cards --- */
.kl-pricing-card {
    border: 1px solid var(--border-light);
    background-color: var(--bg-color); /* Matches your site bg */
    position: relative;
    display: flex;
    flex-direction: column;
}

.kl-card-inner {
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

/* --- Recommended Package Styling --- */
.kl-pricing-card.is-highlighted {
    border-color: var(--text-primary); /* Bold high-contrast border instead of a random green */
}

.kl-highlight-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--text-primary);
    color: var(--bg-color);
    font-family: var(--font-main);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.6rem 2rem;
    white-space: nowrap;
}

/* --- Card Typography --- */
.kl-package-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.kl-package-price {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.kl-package-duration {
    font-family: var(--font-main);
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    display: block;
}

/* --- SVGs / Icons --- */
.kl-icon-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

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

.kl-icon.active {
    color: var(--text-primary);
}

.kl-icon.inactive {
    color: var(--text-secondary);
    opacity: 0.25;
}

/* --- Feature Lists --- */
.kl-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1; /* Pushes the button and meta down */
}

.kl-features-list li {
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
}

.kl-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 1px;
    background-color: var(--text-primary); /* Minimalist horizontal dash */
}

/* --- Meta / Travel Details --- */
.kl-meta-info {
    font-family: var(--font-main);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.kl-meta-info strong {
    color: var(--text-primary);
    font-weight: 400;
}

.kl-extra-fee {
    font-style: italic;
    opacity: 0.8;
}

/* --- Mobile Breakpoints --- */
@media (max-width: 1100px) {
    .kl-pricing-section {
        padding: 6rem 3rem;
    }
    .kl-pricing-grid {
        grid-template-columns: 1fr; /* Stacks to single column */
        max-width: 600px;
        margin: 0 auto;
        gap: 3rem; /* Generous breathing room between stacked cards */
    }
}

@media (max-width: 600px) {
    .kl-pricing-section {
        padding: 5rem 1.5rem;
    }
    .kl-pricing-title {
        font-size: 2.8rem;
    }
    .kl-card-inner {
        padding: 3rem 2rem;
    }
}



  .section-title { font-family: var(--font-display); font-size: 3rem; color: var(--text-primary); font-weight: 400; line-height: 1.15; margin-bottom: 2rem; }
  .eyebrow-text { font-family: var(--font-main); font-size: 0.7rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 1.5rem; display: block; }

 
  /* --- Contact Layout --- */
  .contact-section { 
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
  
  /* Details Column */
  .contact-info-block { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-light); }
  .contact-info-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  
  .info-label { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-primary); margin-bottom: 1rem;font-weight:400; }
  .info-link { color: var(--text-primary); text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; border-bottom: 1px solid transparent; }
  .info-link:hover { color: var(--text-accent-green); border-bottom-color: var(--text-accent-green); }
  
  .social-links { display: flex; gap: 1.5rem; margin-top: 1rem; }
  .social-links a { color: var(--text-primary); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.15em; text-decoration: none; transition: color 0.3s; }
  .social-links a:hover { color: var(--text-accent-green); }

  /* --- CF7 Form Overrides --- */
  .form-wrapper { background-color: var(--bg-alt); padding: 3rem; border: 1px solid var(--border-light); }
  .luxury-form { text-align: left; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-group { display: flex; flex-direction: column; width: 100%; }
  .form-group.full-width { grid-column: span 2; }
  
  .luxury-form label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-secondary); margin-bottom: 0.5rem; display: block; }
  
  /* CF7 Spans */
  .luxury-form .wpcf7-form-control-wrap { display: block; width: 100%; }
  
  .luxury-form input[type="text"], 
  .luxury-form input[type="email"], 
  .luxury-form input[type="tel"], 
  .luxury-form textarea { width: 100%; padding: 1rem 0; border: none; border-bottom: 1px solid var(--border-light); background: transparent; font-family: var(--font-main); font-size: 1rem; color: var(--text-primary); transition: border-color 0.3s ease; border-radius: 0; box-shadow: none; }
  
  .luxury-form input:focus, 
  .luxury-form textarea:focus { outline: none; border-bottom-color: var(--text-accent-green); }
  
  .luxury-form .btn-submit { background-color: var(--text-primary); color: #fff; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.75rem; padding: 1.2rem 3rem; border: none; cursor: pointer; transition: 0.3s; margin-top: 1rem; width: 100%; font-family: var(--font-main); display: block; }
  .luxury-form .btn-submit:hover { background-color: var(--text-accent-green); }
  
  /* CF7 Notices */
  .wpcf7-not-valid-tip { font-family: var(--font-main); font-size: 0.75rem; color: #d9534f; margin-top: 0.5rem; }
  .wpcf7 form .wpcf7-response-output { border: 1px solid var(--border-light) !important; font-family: var(--font-main); font-size: 0.85rem; padding: 1.5rem !important; margin-top: 2rem !important; color: var(--text-primary); }

  /* Responsive Breakpoints */
  @media (max-width: 1024px) {
    .contact-section { padding: 5rem 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-wrapper { padding: 3rem 2rem; }
  }
  @media (max-width: 768px) {
    .contact-title { font-size: 3.5rem; }
    .luxury-form { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
  }
  
  
  /* --- Cinematic Hero --- */
  .booking-hero { position: relative; width: 100%; height: 50vh; min-height:500px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background-color: var(--text-primary);margin-bottom:5rem; }
  .booking-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.5; }
  .booking-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(255,255,255,1) 100%); z-index: 1; }
  
  /* --- Booking Form Container --- */
  .booking-section { padding: 5rem 5rem 8rem 5rem; background-color: var(--bg-color); position: relative; z-index: 2; }
  .form-container { max-width: 900px; margin: 0 auto; background: #fff; padding: 5rem; box-shadow: 0 30px 60px rgba(0,0,0,0.05); border: 1px solid var(--border-light); }

  /* --- Detailed Form Grid --- */
  .luxury-booking-form { text-align: left; display: flex; flex-direction: column; gap: 2.5rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-group { display: flex; flex-direction: column; width: 100%; }
  .form-group.full-width { width: 100%; }
  
  .luxury-booking-form label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-secondary); margin-bottom: 0.8rem; display: block; font-weight: 500; }
  
  /* CF7 Wrappers */
  .luxury-booking-form .wpcf7-form-control-wrap { display: block; width: 100%; }
  
  /* Text Inputs, Textareas, Selects */
  .luxury-booking-form input[type="text"], 
  .luxury-booking-form input[type="email"], 
  .luxury-booking-form input[type="tel"], 
  .luxury-booking-form select,
  .luxury-booking-form textarea { width: 100%; padding: 1.2rem 0; border: none; border-bottom: 1px solid var(--border-light); background: transparent; font-family: var(--font-main); font-size: 1.1rem; color: var(--text-primary); transition: border-color 0.3s ease; border-radius: 0; box-shadow: none; appearance: none; -webkit-appearance: none; }
  
  /* Add custom dropdown arrow for select fields */
  .luxury-booking-form select { background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%231a1a1a" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6 9l6 6 6-6"></path></svg>'); background-repeat: no-repeat; background-position: right 0 center; background-size: 16px; cursor: pointer; }

  .luxury-booking-form input:focus, 
  .luxury-booking-form select:focus, 
  .luxury-booking-form textarea:focus { outline: none; border-bottom-color: var(--text-accent-green); }

  /* --- ICON CHECKBOXES MAGIC (The "Cool" Factor) --- */
  .service-selection .wpcf7-checkbox { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 0.5rem; }
  .service-selection .wpcf7-list-item { margin: 0; display: block; }
  .service-selection label { cursor: pointer; text-align: center; border: 1px solid var(--border-light); padding: 2.5rem 1rem; transition: all 0.3s ease; display: block; margin: 0; height: 100%; }
  
  /* Hide the native checkbox completely */
  .service-selection input[type="checkbox"] { display: none; } 
  
  /* Style the text label */
  .service-selection .wpcf7-list-item-label { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-primary); transition: color 0.3s; }
  
  /* Inject SVGs via CSS background */
  .service-selection .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label::before { content: ""; width: 36px; height: 36px; background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%231a1a1a" stroke-width="1.2"><rect x="3" y="4" width="18" height="16" rx="2"/><circle cx="12" cy="12" r="4"/><path d="M7 8h.01"/></svg>') no-repeat center; background-size: contain; transition: 0.3s; }
  .service-selection .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label::before { content: ""; width: 36px; height: 36px; background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%231a1a1a" stroke-width="1.2"><polygon points="23 7 16 12 23 17 23 7"/><rect x="1" y="5" width="15" height="14" rx="2" ry="2"/></svg>') no-repeat center; background-size: contain; transition: 0.3s; }
  .service-selection .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label::before { content: ""; width: 36px; height: 36px; background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%231a1a1a" stroke-width="1.2"><path d="M12 2v20M2 12h20M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"/><path d="M6 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"/><path d="M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"/><path d="M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"/><path d="M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"/></svg>') no-repeat center; background-size: contain; transition: 0.3s; }
  
  /* The "Checked" Active State using CSS :has selector */
  .service-selection label:has(input[type="checkbox"]:checked) { border-color: var(--text-accent-green); background-color: var(--bg-alt); }
  .service-selection label:has(input[type="checkbox"]:checked) .wpcf7-list-item-label { color: var(--text-accent-green); font-weight: 600; }
  
  /* Fallback for older browsers that don't support :has */
  .service-selection input[type="checkbox"]:checked + .wpcf7-list-item-label { color: var(--text-accent-green); font-weight: 600; }

  /* Submit Button */
  .luxury-booking-form .btn-submit { background-color: var(--text-primary); color: #fff; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem; padding: 1.5rem 3rem; border: none; cursor: pointer; transition: 0.3s; margin-top: 1rem; width: 100%; font-family: var(--font-main); }
  .luxury-booking-form .btn-submit:hover { background-color: var(--text-accent-green); }
  
  /* Form Messages */
  .wpcf7-not-valid-tip { font-family: var(--font-main); font-size: 0.75rem; color: #d9534f; margin-top: 0.5rem; }
  .wpcf7 form .wpcf7-response-output { border: 1px solid var(--border-light) !important; font-family: var(--font-main); font-size: 0.85rem; padding: 1.5rem !important; margin-top: 2rem !important; color: var(--text-primary); text-align: center; }

  /* Breakpoints */
  @media (max-width: 1024px) {
    .booking-section { padding: 0 2.5rem 6rem 2.5rem; }
    .form-container { padding: 3rem 2.5rem; }
  }
  @media (max-width: 768px) {
    .form-row, .service-selection .wpcf7-checkbox { grid-template-columns: 1fr; gap: 2rem; }
    .section-title { font-size: 2.5rem; }
    .booking-section { margin-top: -5vh; }
  }
  /* --- Booking Hero Content & Buttons --- */
  .booking-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); z-index: 1; }
  .booking-hero-content { position: relative; z-index: 2; padding: 0 2rem; color: #ffffff; width: 100%; max-width: 800px; margin-top: -5vh; /* Offsets the form pull-up visually */ }
  
  .booking-hero-title { font-family: var(--font-display); font-size: 3rem; font-weight: 400; line-height: 1; margin-bottom: 1rem; color: #ffffff; }
  .booking-hero-desc { font-family: var(--font-main); font-size: 1rem; color: #ffffff; opacity: 0.9; line-height: 1.6; margin-bottom: 2.5rem; }

  .booking-hero-actions { display: flex; gap: 1.5rem; justify-content: center; }
  
  @media (max-width: 768px) {
    .booking-hero-title { font-size: 3rem; }
    .booking-hero-actions { flex-direction: column; gap: 1rem; }
  }
  
  .journal-toc-container {
    width:100%;
    padding: 5rem;
    padding-top:0;
    background-color: var(--bg-color);
}

.toc-header {
    margin-bottom: 1rem;
}

.toc-main-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* The Grid Layout */
.toc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 2rem;
}

.toc-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    background: var(--bg-topbar); /* Very light grey/off-white */
}

.toc-item:hover {
    background: #fff;
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

.toc-number {
    font-family: var(--font-main);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.toc-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.3;
    flex-grow: 1;
}

.toc-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.toc-item:hover .toc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .toc-grid { grid-template-columns: repeat(2, 1fr); }
    .journal-toc-container { padding: 3rem 2rem; }
}

@media (max-width: 600px) {
    .toc-grid { grid-template-columns: 1fr; }
    .toc-main-title { font-size: 2rem; }
}

.style-concierge { width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem;
    background: #fafafa; text-align: center; }
  .concierge-box { border: 1px solid var(--border-light); padding: 5rem; background: #fff; max-width: 800px; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.02); }

  @media (max-width: 1024px) {
    .style-concierge { padding: 3rem 2.5rem; }
  }
  
  
/* --- Layout & Typography --- */
.kl-animated-process {
  width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem;
  background-color: var(--bg-color, #fafafa);
  color: var(--text-primary, #1a1a1a);
}

.kl-process-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.kl-process-header {
  position: relative;
  margin-bottom: 3rem;
}

.eyebrow-text {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--text-secondary, #666);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display, serif);
  font-size: 3rem;
  margin: 0;
  line-height: 1.1;
}
p.process-content{
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Play/Pause Button --- */
.kl-play-pause-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: 1px solid var(--border-color, #ddd);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.kl-play-pause-btn:hover {
  background: var(--text-primary);
  color: #fff;
}
.kl-play-pause-btn svg {
  width: 18px;
  height: 18px;
}

/* --- The Tabs --- */
.kl-tabs-list {
  display: flex;
  flex-direction: column;
}

.kl-tab-item {
  position: relative;
  padding: 1.25rem 0;
  cursor: pointer;
  opacity: 0.6; /* Dimmed when inactive */
  transition: opacity 0.4s ease;
  border-bottom: 1px solid var(--border-light, #eee);
}

.kl-tab-item:last-child {
  border-bottom: none;
}

.kl-tab-item.active {
  opacity: 1;
}

.kl-tab-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kl-tab-icon-wrapper svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.kl-tab-title {
  font-family: var(--font-main, sans-serif);
  font-size: 1.5rem;
  margin: 0;
  font-weight:400;
  font-family: var(--font-display, serif);
}

/* --- The Accordion Animation (Modern CSS Grid Trick) --- */
.kl-tab-body-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.kl-tab-item.active .kl-tab-body-wrapper {
  grid-template-rows: 1fr;
  opacity: 1;
}

.kl-tab-body {
  overflow: hidden;
  padding-left: calc(24px + 1rem); /* Keep aligned with title, ignoring icon */
}

.kl-tab-body p {
  margin: 0;
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary, #555);
}

/* --- The Progress Bar Timer --- */
.kl-tab-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}

.kl-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--text-accent-green, #4A5D23); 
}

/* Only the active tab runs the animation (5 seconds) */
.kl-tab-item.active .kl-progress-bar {
  animation: runProgress 5s linear forwards;
}

.kl-process-container.is-paused .kl-progress-bar {
  animation-play-state: paused !important;
}

@keyframes runProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* --- The Images --- */
.kl-process-images {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.kl-tab-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.kl-tab-img.active {
  opacity: 1;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
  .kl-process-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .kl-process-images {
    aspect-ratio: 16 / 9; 
    grid-row: 1; 
  }
  .kl-play-pause-btn {
    top: -60px; 
  }
}

/* --- Section & Header --- */
.kl-cat-video-section {
      width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem;
    padding-right:0;
  background-color: var(--bg-color, #fafafa);
  color: var(--text-primary, #1a1a1a);
  overflow: hidden;
}

.kl-cat-video-header {
  margin-left: auto;
  margin-right: auto;
}

.kl-cat-video-header .eyebrow-text {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--text-secondary, #666);
  display: block;
  margin-bottom: 1rem;
}

.kl-cat-video-header .section-title {
  font-family: var(--font-display, 'Georgia', serif);
  font-size: 3rem;
  font-weight: 400;
  margin: 0;
}

/* --- The Scroll Track --- */
.kl-cat-track-wrapper {
  width: 100%;
  box-sizing: border-box;
}

.kl-cat-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 2rem; 
  scroll-snap-type: x mandatory;
  scrollbar-width: none; 
  padding-right:5rem;
}
.kl-cat-track::-webkit-scrollbar { display: none; }

/* --- Video Cards --- */
.kl-cat-card {
  position: relative;
  flex-shrink: 0;
  height: 55vh; 
  min-height: 400px;
  aspect-ratio: 16 / 9; /* Standard landscape */
  background: #000;
  scroll-snap-align: start;
  overflow: hidden;
}

.kl-cat-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.kl-cat-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.2) 100%);
  transition: background 0.4s ease;
}

/* Play Button (Center) */
.kl-cat-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 75px; height: 75px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary, #1a1a1a);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s ease;
  z-index: 2;
}
.kl-cat-play svg { width: 30px; height: 30px; margin-left: 4px; }

/* Badge (Bottom Left) */
.kl-cat-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}
.kl-cat-badge svg { width: 22px; height: 22px; }
.kl-cat-badge span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Gallery Link (Bottom Right) */
.kl-cat-gallery-link {
  position: absolute;
  bottom: 2rem; right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  z-index: 3;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.kl-cat-gallery-link svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.kl-cat-gallery-link:hover svg { transform: translateX(5px); }

/* Hover Effects */
.kl-cat-card:hover .kl-cat-bg { transform: scale(1.03); filter: brightness(0.9); }
.kl-cat-card:hover .kl-cat-play { transform: translate(-50%, -50%) scale(1); background: #ffffff; }

/* --- Lightbox --- */
.kl-lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s;
}
.kl-lightbox.active { opacity: 1; visibility: visible; }
.kl-lightbox-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); cursor: pointer; }
.kl-lightbox-close {
  position: absolute; top: 2rem; right: 2rem; background: none; border: none;
  color: #fff; cursor: pointer; z-index: 2; transition: transform 0.3s ease;
}
.kl-lightbox-close:hover { transform: scale(1.1); }
.kl-lightbox-close svg { width: 36px; height: 36px; }
.kl-lightbox-content {
  position: relative; z-index: 1; width: 90%; max-width: 1200px;
  aspect-ratio: 16 / 9; background: #000; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.kl-lightbox-content iframe { width: 100%; height: 100%; border: none; }

/* Mobile Adjustments */
@media (max-width: 768px) {
  .kl-cat-card { height: 40vh; }
  .kl-cat-badge { bottom: 1.5rem; left: 1.5rem; }
  .kl-cat-gallery-link { bottom: 1.5rem; right: 1.5rem; }
  .kl-cat-badge span { display: none; /* Hide text on mobile to save space, keep icon */ }
}

/* --- Founder Section Styles --- */
.kl-founder-section {
        width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem;
    background-color: var(--bg-color, #ffffff);
    overflow: hidden;
}

.kl-founder-container {
    display: grid;
    grid-template-columns: 5fr 7fr; /* Asymmetrical grid: Image is slightly narrower than text */
    gap: 6rem;
    align-items: center;
}

/* --- Image Column & Frame --- */
.kl-founder-image-col {
    position: relative;
    padding-right: 2rem; /* Room for the accent frame */
}

.kl-image-frame {
    position: relative;
    aspect-ratio: 3 / 4; /* Classic portrait ratio */
    width: 100%;
}

.kl-founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.kl-founder-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-topbar, #f4f4f4);
    position: relative;
    z-index: 2;
}

/* The delicate offset frame line (Very high-end editorial detail) */
.kl-frame-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    border: 1px solid var(--border-light, #e5e5e5);
    z-index: 1;
}

/* --- Text Column Typography --- */
.kl-founder-text-col {
    max-width: 650px;
}

.kl-founder-eyebrow {
    font-family: var(--font-main, sans-serif);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-secondary, #666);
    display: block;
    margin-bottom: 1.5rem;
}

.kl-founder-title {
    font-family: var(--font-display, serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-primary, #111);
    line-height: 1.1;
    margin: 0 0 2.5rem 0;
}

.kl-founder-body {
    font-family: var(--font-main, sans-serif);
    font-size: 1.05rem;
    color: var(--text-secondary, #444);
    line-height: 1.8;
}

.kl-founder-body p {
    margin-bottom: 1.5rem;
}

.kl-founder-body p:last-child {
    margin-bottom: 0;
}

/* The Sign-off */
.kl-founder-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light, #e5e5e5);
    font-family: var(--font-display, serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary, #111);
}

/* --- Responsive Design --- */
@media (max-width: 1100px) {
    .kl-founder-section {
        padding: 6rem 3rem;
    }
    .kl-founder-container {
        grid-template-columns: 1fr; /* Stack on tablet */
        gap: 3rem;
    }
    .kl-founder-image-col {
        max-width: 500px; /* Keep image from becoming overwhelmingly huge */
        margin: 0 auto;
        padding-right: 1rem;
    }
    .kl-frame-accent {
        top: -15px; right: -15px; bottom: 15px; left: 15px;
    }
}

@media (max-width: 600px) {
    .kl-founder-section {
        padding: 5rem 1.5rem;
    }
    .kl-founder-title {
        font-size: 2.5rem;
    }
}



  /* --- Footer Layout --- */
  .site-footer {
    background-color: var(--bg-topbar);
    padding: 6rem 5rem 2rem 5rem; /* Massive top padding to separate it from page content */
    font-family: var(--font-main);
  }

  .footer-grid {
    display: grid;
    /* 4 Columns: The first and last are slightly wider to balance the text */
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr; 
    gap: 3rem;
    margin-bottom: 5rem;
  }

  /* --- Brand & Contact Column --- */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Reusing the stacked logo from the header */
  .footer-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .footer-logo .logo-main {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    line-height: 1;
    font-family: var(--font-display);
  }

  .footer-logo .logo-sub {
    color: var(--text-secondary);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    padding-left: 0.2em;
  }

  .footer-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
  }

  .footer-contact-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: color var(--transition-speed) ease;
    display: block;
    margin-bottom: 0.5rem;
  }

  .footer-contact-link:hover {
    color: var(--text-secondary);
  }

  /* --- Navigation & Areas Columns --- */
  .footer-col-title {
    font-size: 0.75rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-links a {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition-speed) ease;
  }

  .footer-links a:hover {
    color: var(--text-primary);
  }

  /* --- Call to Action Column --- */
  .footer-cta-box {
    background-color: #ffffff; /* Crisp white box inside the off-white footer */
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .cta-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .btn-quote {
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.8rem 2.5rem;
    background-color: var(--text-primary);
    color: #ffffff;
    border: 1px solid var(--text-primary);
    transition: all var(--transition-speed) ease;
    width: 100%;
    text-align: center;
  }

  .btn-quote:hover {
    background-color: transparent;
    color: var(--text-primary);
  }

  /* --- Bottom Copyright Bar --- */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .footer-legal a {
    text-decoration: none;
    color: var(--text-secondary);
    margin-left: 1.5rem;
    transition: color var(--transition-speed) ease;
  }

  .footer-legal a:hover {
    color: var(--text-primary);
  }

  /* --- Responsive Breakpoints --- */
  @media (max-width: 1024px) {
    .site-footer {
      padding: 5rem 2.5rem 2rem 2.5rem;
    }
    .footer-grid {
      grid-template-columns: 1fr 1fr; /* Drops to 2 columns */
      gap: 3rem;
    }
  }

  @media (max-width: 768px) {
    .site-footer {
      padding: 3rem 1.5rem 2rem 1.5rem;
    }
    .footer-grid {
      grid-template-columns: 1fr; /* Stacks vertically on mobile */
      gap: 2.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-legal a {
      margin: 0 0.75rem;
    }
  }
  
  
/* --- Core Section Setup --- */
.kl-features-section {
    background-color: var(--bg-color, #ffffff);
   width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem;
}

/* --- Left-Aligned Header --- */
.kl-features-header {
    text-align: left;
    max-width: 800px; /* Prevents the intro text from stretching too wide */
    margin-bottom: 3rem;
}

.kl-left-eyebrow {
    font-family: var(--font-main, sans-serif);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-secondary, #666);
    display: block;
    margin-bottom: 1rem;
}

.kl-features-title {
    font-family: var(--font-display, serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-primary, #111);
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}

.kl-features-intro {
    font-family: var(--font-main, sans-serif);
    font-size: 1.1rem;
    color: var(--text-secondary, #444);
    line-height: 1.7;
}

/* --- The Boxed Grid --- */
.kl-features-grid {
    display: grid;
    /* Auto-fit creates columns based on screen size. minmax 350px ensures they don't get too skinny */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* --- Individual Boxes --- */
.kl-feature-box {
    border: 1px solid var(--border-light, #e5e5e5);
    padding: 3.5rem 3rem;
    background-color: var(--bg-color, #ffffff);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.kl-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    border-color: var(--text-primary, #111);
}

/* --- Icon Wrapper --- */
.kl-box-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 2rem;
    color: var(--text-primary, #111); /* Ensures SVGs with stroke="currentColor" match your theme */
}

/* Forces any pasted SVG to fit the container perfectly */
.kl-box-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Box Typography --- */
.kl-box-title {
    font-family: var(--font-display, serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-primary, #111);
    margin: 0 0 1rem 0;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .kl-features-section { padding: 6rem 3rem; }
    .kl-features-title { font-size: 3rem; }
    .kl-feature-box { padding: 2.5rem; }
}

@media (max-width: 768px) {
    .kl-features-section { padding: 5rem 1.5rem; }
    .kl-features-grid { grid-template-columns: 1fr; /* Stack into 1 column on mobile */ }
    .kl-features-title { font-size: 2.5rem; }
}
  
/* --- Layout & Typography --- */
.kl-cinematic-section {
      width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem;
  background-color: var(--bg-color, #fafafa);
  color: var(--text-primary, #1a1a1a);
}

.kl-cinematic-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.kl-cinematic-header .eyebrow-text {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--text-secondary, #666);
  display: block;
  margin-bottom: 1rem;
}

.kl-cinematic-header .section-title {
  font-family: var(--font-display, 'Georgia', serif);
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
  color: var(--text-primary, #1a1a1a);
}

.kl-cinematic-header .process-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary, #555);
  margin: 0;
}

/* --- The Expanding Panels --- */
.kl-panels-wrapper {
  display: flex;
  width: 100%;
  height: 75vh; 
  min-height: 600px;
  gap: 4px; /* Sharp architectural lines */
}

.kl-panel {
  position: relative;
  flex-grow: 1; 
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  transition: flex-grow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: flex-grow; 
}

/* Background Image */
.kl-panel-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.0);
  transition: transform 1s ease-out;
  will-change: transform;
}

/* Dark Dimmer for Inactive Panels */
.kl-panel-dimmer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); 
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* Readability Gradient */
.kl-panel-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  pointer-events: none;
}

/* --- Panel Content (Anchored to prevent movement) --- */
.kl-panel-content {
  position: absolute;
  bottom: 0; /* Anchors the title high enough so the description fits below */
  left: 2rem;
  right: 2rem;
}

.kl-panel-num {
  font-family: var(--font-display, 'Georgia', serif);
  font-size: 1.2rem;
  color: white;
  display: block;
  margin-bottom: 0.5rem;
}

.kl-panel-title {
  font-family: var(--font-display, 'Georgia', serif);
  font-size: 1.5rem; 
  line-height: 1.4;
  margin: 0;
  color: #ffffff; 
  white-space: normal; 
  font-weight: 500;
}

/* The Description sits absolute BELOW the title */
.kl-panel-desc {
  top: 100%; 
  left: 0;
  width: 100%;
  padding-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

/* --- The Active State --- */
.kl-panel.active {
  flex-grow: 3; 
}

.kl-panel.active .kl-panel-dimmer {
  opacity: 0; 
}

.kl-panel.active .kl-panel-bg {
  transform: scale(1.03); 
}

.kl-panel.active .kl-panel-desc {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.2s; 
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
  .kl-panels-wrapper {
    flex-direction: column; 
    height: 85vh; 
  }
  
  .kl-panel-content {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 6rem;
  }
}



/* --- Layout & Typography --- */
.kl-cinematic-section {
  
  background-color: var(--bg-color, #fafafa);
  color: var(--text-primary, #1a1a1a);
  width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 5rem;
}
.process-content p{
    margin-bottom:3rem;
}
/* --- The Expanding Panels --- */
.kl-panels-wrapper {
  display: flex;
  width: 100%;
  height: 75vh; 
  min-height: 600px;
  gap: 4px; /* Sharp architectural lines */
}

.kl-panel {
  position: relative;
  flex-grow: 1; 
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  transition: flex-grow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: flex-grow; 
}

/* Background Image */
.kl-panel-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.0);
  transition: transform 1s ease-out;
  will-change: transform;
}

/* Dark Dimmer for Inactive Panels */
.kl-panel-dimmer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); 
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* Permanent Top Gradient (Ensures title is always readable) */
.kl-panel-gradient-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
  pointer-events: none;
}

/* Fading Bottom Gradient (Appears behind paragraph text) */
.kl-panel-gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  pointer-events: none;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.6s ease;
}

/* --- TOP Content (Always Visible) --- */
.kl-panel-content-top {
  position: absolute;
  top: 2.5rem; 
  left: 2rem;
  right: 2rem;
  z-index: 2;
}

/* --- BOTTOM Content (Fades in when Active) --- */
.kl-panel-content-bottom {
  position: absolute;
  bottom: 2.5rem; 
  left: 2rem;
  right: 2rem;
  z-index: 2;
  
  /* Text is completely hidden on closed panels */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px); /* Slips up slightly when revealed */
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.kl-panel-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* --- The Active State --- */
.kl-panel.active {
  flex-grow: 3; 
}

.kl-panel.active .kl-panel-dimmer {
  opacity: 0; 
}

.kl-panel.active .kl-panel-bg {
  transform: scale(1.03); 
}

.kl-panel.active .kl-panel-gradient-bottom {
  opacity: 1; /* Fade in the dark gradient at the bottom */
}

/* Reveal paragraph when active */
.kl-panel.active .kl-panel-content-bottom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.3s; /* Wait for the panel to expand before fading in text */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
  .kl-panels-wrapper {
    flex-direction: column; 
    height: 85vh; 
  }
  
  .kl-panel-content-top {
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
  }
  
  .kl-panel-content-bottom {
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
  }
  
  .kl-panel-title {
    font-size: 1.25rem;
  }
}

/* Layout Matrix */
.kl-journal-archive-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  max-width: 1600px;
  margin: 6rem auto;
  padding: 0 5%;
}

/* Sidebar Design Elements */
.kl-journal-filters {
  position: sticky;
  top: 4rem;
  height: fit-content;
}

.filter-group {
  margin-bottom: 3rem;
}

.filter-title {
  font-family: var(--font-main, sans-serif);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  color: #1a1a1a;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #555;
  cursor: pointer;
  user-select: none;
}

.filter-checkbox-label input {
  display: none; /* Hide native checkbox inputs */
}

/* Minimalist Custom Checkbox Replacement */
.custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  margin-right: 12px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}

.filter-checkbox-label input:checked + .custom-checkbox {
  background-color: var(--text-accent-green, #4A5D23);
  border-color: var(--text-accent-green, #4A5D23);
}

/* Post Matrix: Split Row */
.kl-journal-feed {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  transition: opacity 0.3s ease;
}

.kl-journal-row-item {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 3rem;
  align-items: center;
}

.kl-journal-item-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.kl-journal-item-image .image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.kl-journal-row-item:hover .image-bg {
  transform: scale(1.04);
}

/* Question & Answer Typography */
.kl-journal-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kl-journal-question {
  font-family: var(--font-display, 'Georgia', serif);
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 400;
  margin: 0 0 1rem 0;
  color: #1a1a1a;
}

.kl-journal-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Keeps feed entries uniform and scannable */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Editorial Buttons */
.kl-journal-btn {
  font-family: var(--font-main, sans-serif);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #1a1a1a;
  width: fit-content;
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}

.kl-journal-btn:hover {
  color: var(--text-accent-green, #4A5D23);
  border-color: var(--text-accent-green, #4A5D23);
}

/* Pagination Base */
.kl-load-more-container {
  text-align: center;
  margin-top: 6rem;
}

#kl-load-more-btn {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background-color 0.3s;
}

#kl-load-more-btn:hover {
  background-color: var(--text-accent-green, #4A5D23);
}

/* Mobile & Tablet Adaptation */
@media (max-width: 1024px) {
  .kl-journal-archive-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .kl-journal-filters {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .kl-journal-filters {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .kl-journal-row-item {
    grid-template-columns: 1fr; /* Image stacks naturally on top on mobile */
    gap: 1.5rem;
  }

  .kl-journal-item-image {
    height: 240px;
  }

  .kl-journal-question {
    font-size: 1.4rem;
  }
}