@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Contax Sans */
@font-face {
  font-family: "ContaxSans55Reg";
  src: url("/fonts/ContaxSans55Reg.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "ContaxSans56Ita";
  src: url("/fonts/ContaxSans56Ita.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}

/* Gotham Narrow */
@font-face {
  font-family: "Gotham narrow black";
  src: url("/fonts/Gotham Narrow Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Gotham narrow bold";
  src: url("/fonts/Gotham Narrow Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Gotham narrow book";
  src: url("/fonts/Gotham Narrow Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gotham narrow light";
  src: url("/fonts/Gotham Narrow Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Gotham narrow medium";
  src: url("/fonts/Gotham Narrow Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

/* Gotham */
@font-face {
  font-family: "Gotham bold";
  src: url("/fonts/Gotham-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Gotham book";
  src: url("/fonts/GothamBook.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gotham light";
  src: url("/fonts/GothamLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* MonVoir */
@font-face {
  font-family: "MonVoir";
  src: url("/fonts/MonVoir.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}



/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
     font-family: "Gotham Book", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'ContaxSans55Reg', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

h1 {
    font-size: 3rem;
    text-align: center;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    font-family: 'Gotham narrow book', serif;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.divider {
    margin: 2rem auto;
    max-width: 300px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo-img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: #CAB686;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('/images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background-position: left center;  /* keep focal point on the left edge */
    background-size: cover;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    max-height: 200px;
    width: auto;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.intro-section {
    background-color: #F8F9FA;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-text p {
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.7;
}

.portrait-img {
    border-radius: 50%;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-section {
    background-color: white;
    text-align: center;
}

.section-header h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.philosophy-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
}

.mission-section {
    background-color: #f9f9f9;
    text-align: center;
}

.mission-section h2 {
    font-size: 2rem;
    color: #384472;
    margin-bottom: 2rem;
}

.mission-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Testimonials */
.testimonials-section {
    text-align: center;
}

.testimonials-section h2 {
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial cite {
    font-weight: 600;
    color: #5a9fd4;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background-color: #5a9fd4;
    color: white;
    text-align: center;
}

.contact-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-icon {
    height: 20px;
    width: 20px;
    filter: brightness(0) invert(1);
}

/* Page Styles */
.page-hero {
    padding: 4.5rem 0 0.5rem;
    background-color: #f9f9f9;
    text-align: center;
}

.page-title {
    color: #6F787F;
    font-size: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-content {
    padding: 4rem 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-portrait {
    max-width: 300px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text em {
    color: #666;
    font-style: italic;
    display: block;
    text-align: center;
    margin: 2rem 0;
}

.about-text strong {
    color: #5a9fd4;
    font-weight: 600;
}

.about-gallery {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.gallery-images {
    text-align: center;
}

.gallery-img {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
    background-color: #384457;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    text-align: left;
}

.social-icon {
    height: 30px;
    width: 30px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  text-align: left; /* remove centered text */
}

.footer-bottom p {
  margin: 0;
  color: #ccc;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social .social-icon {
  height: 15px;
  width: 15px;
  /* filter: brightness(0) invert(1); */
  transition: opacity 0.2s ease;
  opacity: 0.8;
  filter: sepia(0.3) saturate(2) hue-rotate(10deg) brightness(1);
  transition: filter 0.2s ease;
}

.footer-social a:hover .social-icon {
  opacity: 0.8;
  filter: sepia(1) saturate(5) hue-rotate(10deg) brightness(1.2);
}

/* Stack vertically on small screens */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* parallax separators */
.parallax-sep {
  padding: 0;     
  height: 500px;            /* your requested height */
  position: relative;
  overflow: clip;           /* hides the sticky bg overflow */
  background-color: red; /* fallback for browsers that don't support sticky */
}

.parallax-sep__bg {
  position: sticky;
  top: 0;                   /* sticks against viewport top */
  height: 100vh;            /* tall image to enable parallax illusion */
  background-image: var(--bg, none);
  background-attachment: fixed;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .parallax-sep__bg {
    position: relative;               /* allow normal flow on mobile */
    height: 100%;
    background-attachment: scroll;    /* avoid fixed backgrounds breaking scaling */
    background-size: cover;          
    background-position: left center; /* keep focal point visible */
  }

}


/* Responsive Design */
@media (max-width: 900px) {
  .parallax-sep {
    height: 20em;                    /* reduce container height for phones/tablets */
  }
  .parallax-sep__bg {
    position: relative;               /* allow normal flow on mobile */
    height: 100%;
    background-attachment: scroll;    /* avoid fixed backgrounds breaking scaling */
    background-size: cover;          
    background-position: right center; /* keep focal point visible */
  }
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-hero {
        display: none;
    }

    .campaign {
        padding-top: calc(3.5rem) ! important;   /* extra space for fixed header */
    }

    .blog-preamble {
        padding-top: calc(5rem) ! important;   /* extra space for fixed header */
    }

    .blog-landing {
        padding-top: calc(2rem) ! important;   /* extra space for fixed header */
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .hero-section {
      background-position: left center;  /* keep focal point on the left edge */
      background-size: cover;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .intro-text h2,
    .intro-text p {
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
}

/* scroll cue */
html { scroll-behavior: smooth; }

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #CAB686;                 /* visible on dark hero; adjust if needed */
  opacity: 0.9;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .3s ease, transform .3s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}

.scroll-cue:hover { opacity: 1; transform: translateX(-50%) translateY(-2px); }
.scroll-cue.is-hidden { opacity: 0; pointer-events: none; transition: opacity .4s ease; }

.scroll-cue .chevron {
  width: 28px;
  height: 28px;
  display: block;
  animation: cue-bounce 1.8s infinite ease-in-out;
}

/* Staggered timing for the cascade effect */
.scroll-cue .chevron:nth-child(1) { animation-delay: 0s; }
.scroll-cue .chevron:nth-child(2) { animation-delay: .15s; }
.scroll-cue .chevron:nth-child(3) { animation-delay: .30s; }

@keyframes cue-bounce {
  0%   { transform: translateY(0);    opacity: .25; }
  30%  { transform: translateY(6px);  opacity: .9; }
  60%  { transform: translateY(0);    opacity: .6; }
  100% { transform: translateY(0);    opacity: .25; }
}

/* If your hero background is light, switch to a darker arrow: */
.hero--light .scroll-cue { color: #222; filter: drop-shadow(0 2px 6px rgba(255,255,255,.35)); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-cue .chevron { animation: none; }
}


/* Testimonials carousal */
/* --- Testimonials: slider layout --- */
.testimonials-section {
  background: #D7E1E4;                 /* match your example’s pale blue; tweak as needed */
  color: #2f3c4a;
}

.testimonials-title {
  font-size: 1.55em;
  letter-spacing: 0.25em;
  font-weight: 600;
  text-transform: uppercase;
  color: #2f3c4a;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 3.5rem;                /* space for arrows */
}

.ts-viewport {
  overflow: hidden;
  width: 100%;
}

.ts-track {
  display: flex;
  transition: transform 500ms ease;
  will-change: transform;
}

/* Each slide */
.testimonial {
  flex: 0 0 100%;                      /* one slide per view */
  padding: 0 1rem;
  margin: 0;                           /* reset figure default margins */
  text-align: center;
}

/* Remove "card" look from your previous grid style */
.testimonial blockquote,
.testimonial {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.testimonial blockquote {
  font-style: normal;                  /* optional: tone down italics */
  font-size: 1.15rem;
  line-height: 1.2;
  color: #334455;
  max-width: 70ch;
  margin: 0 auto 0.75rem;
}

.testimonial figcaption,
.testimonial cite {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #4b5a69;
  text-transform: none;
}

/* Arrows */
.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #7a8997;                      /* soft grey like your example */
  padding: .5rem;
  cursor: pointer;
  line-height: 0;
  transition: color .2s ease, transform .2s ease;
}

.ts-arrow:hover { color: #556473; transform: translateY(-50%) scale(1.05); }
.ts-prev { left: 0.5rem; }
.ts-next { right: 0.5rem; }

.ts-arrow svg { width: 28px; height: 28px; display: block; }

/* Responsive tweaks */
@media (max-width: 600px) {
  .testimonials-slider { padding: 0.5rem 2.5rem; }
  .testimonial blockquote { font-size: 1.05rem; }
}

/* Optional: dots (if you add them later) */
.ts-dots {
  display: flex; justify-content: center; gap: .5rem; margin-top: 1rem;
}
.ts-dot {
  width: 6px; height: 6px; border-radius: 999px; background: #a8b6c3; opacity:.6;
}
.ts-dot.is-active { opacity: 1; background: #6e8191; }

/* --- Floating Contact Button --- */
.contact-fab {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0));
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #CAB686;     /* flat look with subtle outline */
  background: #fff;               /* flat */
  color: #2f3c4a;
  font-weight: 700;
  font-family: 'ContaxSans55Reg', serif;
  letter-spacing: .04em;
  text-transform: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform .15s ease, opacity .15s ease, border-color .2s ease;
}
.contact-fab:hover { transform: translateY(-1px); }
.contact-fab:active { transform: translateY(0); }
.contact-fab .fab-icon { width: 18px; height: 18px; }


/* Center on phones */
@media (max-width: 640px) {
  .contact-fab {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .contact-fab:hover { transform: translateX(-50%) translateY(-1px); }
}

/* --- Backdrop --- */
.contact-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.contact-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* --- Drawer --- */
.contact-drawer {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1110;
  background: #ffffff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -8px 30px rgba(0,0,0,.15);
  transform: translateY(100%);
  transition: transform .3s ease;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}
.contact-drawer.is-open {
  transform: translateY(0);
}
.contact-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #e6e6e6;
}
.contact-drawer__header h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: .06em;
}
.contact-close {
  background: transparent; border: 0; cursor: pointer; padding: 6px;
}
.contact-close svg { width: 22px; height: 22px; }

.contact-drawer__content {
  padding: 16px 18px 24px;
  overflow: auto;
}

/* --- Mock Form --- */
.contact-form {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.contact-form .field { display: grid; gap: 6px; }
.contact-form label {
  font-weight: 600;
  letter-spacing: .04em;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  font: inherit;
}
.btn-submit {
  justify-self: start;
  padding: 10px 16px;
  border: 1px solid #CAB686;
  background: #CAB686;
  color: #1f2833;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .04em;
}

/* Taller drawer on small screens */
@media (max-width: 640px) {
  .contact-drawer { max-height: 92vh; }
}


/* ==================================== Portfolio Styles ==================================== */
/* Wider container for gallery */
.container--wide { max-width: 1400px; }

/* Masonry-like gallery (CSS columns = simple & fast) */
.gallery-grid {
  column-count: 3;
  column-gap: 16px;
}
.gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:hover img {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.gallery-sentinel { height: 1px; }

/* 2 columns on mobile */
@media (max-width: 768px) {
  .gallery-grid { column-count: 2; column-gap: 12px; }
  .gallery-item { margin-bottom: 12px; }
}

/* Lightbox overlay */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,24,28,.85);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
  z-index: 1200;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lb-close {
  grid-column: 3; grid-row: 1;
  margin: 14px 16px 0 0;
  background: transparent; border: 0; color: #fff; cursor: pointer;
  padding: 6px;
}
.lb-close svg { width: 26px; height: 26px; }

.lb-viewport {
  grid-column: 1 / -1; grid-row: 2;
  display: grid; place-items: center;
  overflow: hidden;
}

.lb-track {
  display: flex; width: 100%;
  max-width: min(92vw, 1600px);
  height: 100%;
  align-items: center;
  transform: translateX(0);
}

.lb-slide {
  flex: 0 0 100%;
  display: grid;
  place-items: center;
  padding: 0 4vw;
}
.lb-slide img {
  max-width: 100%;
  /*max-height: 82vh; */
  width: auto; height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

/* Arrows */
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.25);
  color: #e9e1cf; /* warm light */
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-arrow:hover { background: rgba(0,0,0,.35); transform: translateY(-50%) scale(1.05); }
.lb-arrow svg { width: 26px; height: 26px; }

/* Small screens */
@media (max-width: 640px) {
  .lb-slide { padding: 0 2vw; }
  .lb-arrow { width: 38px; height: 38px; }
  .lb-arrow svg { width: 22px; height: 22px; }
}

/* Base overlay sits above site header */
.lightbox { z-index: 1200; }

/* View content below controls */
.lb-viewport,
.lb-track {
  position: relative;
  z-index: 1;
}

/* Arrows above viewport */
.lb-arrow {
  position: absolute;       /* already true, harmless to repeat */
  z-index: 5;
}

/* Close above EVERYTHING */
.lb-close {
  position: absolute;       /* override the grid placement */
  top: 14px;
  right: 16px;
  z-index: 10;              /* highest */
  pointer-events: auto;     /* just in case */
}


/* Page hero title alignment for consistency */
.page-title { letter-spacing: .08em; }

/* --- Portfolio sub-nav --- */
.portfolio-nav {
  background: #f7f8f9;
  padding: 0rem 0 1.5rem;
  /* border-top: 1px solid #eee; */
  border-bottom: 1px solid #eee;
}

section.portfolio-nav, section.blog-landing, section.blog-preamble {
  margin: 0 auto;
}

section.blog-landing {
  padding: 0;
}

.blog-preamble {
  padding-left: 5rem;
  padding-top: 2rem;
  padding-right: 5rem;
  padding-bottom: 1rem;
}

.portfolio-nav__title {
  font-size: 1.8rem;
  letter-spacing: .28em;
  font-weight: 600;
  color: #2f3c4a;
  margin-bottom: .6rem;
  text-transform: uppercase;
}
.portfolio-nav__sub {
  color: #4a5563;
  max-width: 60ch;
  margin: 0 auto 1.2rem;
  line-height: 1.6;
}

.portfolio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.portfolio-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.6rem;
  min-width: 160px;
  background: #c7d6dc;          /* pale blue button like your ref */
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: .12em;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform .15s ease, opacity .15s ease, background .2s ease;
}
.portfolio-pill:hover { transform: translateY(-1px); opacity: .95; }
.portfolio-pill.is-active {
  background: #CAB686;          /* Katie’s gold accent */
  color: #1f2833;
}

@media (max-width: 769px) {
  .portfolio-nav {
    padding-top: calc(5rem);   /* extra space for fixed header */
    scroll-margin-top: 4.5rem;
  }
  .portfolio-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
  }
  .portfolio-pill {
    width: 100%;
  }
}

.portfolio-landing {
  text-align: center;
  padding: 4rem 2rem;
}

.portfolio-landing h2 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.portfolio-landing p {
  color: #444;
  margin-bottom: 2rem;
}

.portfolio-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5em;
}

/*
@media (max-width: 900px) {
}
*/

.portfolio-btn {
  background: #b0c4cc;
  color: white;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.portfolio-btn:hover {
  background: #8da4ad;
}

/* INFO page */
.info-hero {
  text-align: center;
  padding: 4rem 0 2rem;
}
.info-kicker {
  letter-spacing: .15rem;
  text-transform: uppercase;
  color: #2f3c4a;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: .25rem;
}

.info-heading {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: .15rem;
  color: #2f3c4a;
  margin-bottom: 1rem;
  
}
.info-body {
  max-width: 70ch;
  margin: 0.25rem auto 0;
  color: #424e59;
  line-height: 1.75;
}

/* Stats band */
.info-stats {
  background: #F7F8F9;
  padding: 2.5rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.info-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.info-stat {
  text-align: center;
  padding: .5rem 1rem;
}
.info-stat__label {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #2f3c4a;
  margin-bottom: .25rem;
}
.info-stat__text {
  color: #4a5563;
  line-height: 1.6;
}

/* Lifestyle */
.info-lifestyle {
  text-align: center;
  padding: 3rem 0 2.25rem;
}
.info-subtitle {
  font-size: 1.6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #2f3c4a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.info-ctas {
  display: flex; justify-content: center; gap: 1rem; margin-top: 1.25rem;
}
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.6rem;
  background: #c7d6dc; color: #fff; text-decoration: none;
  border-radius: 4px;
  letter-spacing: .12em; font-weight: 600;
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .15s ease, opacity .15s ease, background .2s ease;
}
.btn-pill:hover { transform: translateY(-1px); opacity: .95; }
.btn-pill--gold { background: #CAB686; color: #1f2833; }

/* Events split block */
.info-events { padding: 2.5rem 0 3rem; }
.info-events__wrap {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center;
}
.info-events__image img {
  width: 100%; height: auto; border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* Responsive */
@media (max-width: 992px) {
  .info-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .info-stats__grid { grid-template-columns: 1fr; }
  .info-events__wrap { grid-template-columns: 1fr; }
  .info-ctas { flex-direction: column; }
}

/* Blog list */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px){ .blog-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .blog-grid{ grid-template-columns: 1fr; } }

.post-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  overflow: hidden;
}
.post-card__image img { display:block; width:100%; height:auto; }
.post-card__body { padding: 1rem 1.1rem 1.2rem; }
.post-card__title { font-size: 1.5rem; margin-bottom: .25rem; }
.post-card__title a { color: #2f3c4a; text-decoration: none; }
.post-card__meta { color:#667; font-size:.95rem; margin-bottom:.5rem; }
.post-card__excerpt { color:#424e59; line-height:1.6; margin-bottom:.75rem; }
.post-card__read { color:#CAB686; font-weight:600; letter-spacing:.04em; text-decoration:none; }

/* Single post */
.post-hero__img { width:100%; height:auto; display:block; }
.post-title { text-align:center; margin-top:1.2rem; }
.post-meta { text-align:center; color:#667; margin:.25rem 0 1.25rem; }
.post-content { max-width: 800px; }
.post-content img { border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.12); margin: 1rem auto; }
.post-tags, .post-nav { max-width:800px; margin-top:1.25rem; }
.post-nav { display:flex; justify-content:space-between; }

/* Blog landing teasers */
.blog-landing .container { max-width: 1100px; }

.teaser {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 24px;
  margin: 44px 0;
  position: relative;
}

.teaser__media {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.teaser__media img { width: 100%; height: auto; display: block; }
.teaser__media:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,.16);
}

/* The text panel that overlaps slightly */
.teaser__card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px 24px;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  border: 1px solid rgba(196,177,133,.35); /* gold tint border */
  transform: translateX(-40px);             /* overlap onto image */
}

.teaser--flip .teaser__card {
  transform: translateX(40px);              /* opposite side when flipped */
}
.teaser--flip {
  grid-template-columns: 1fr 1.1fr;
}
.teaser--flip .teaser__media { order: 2; }
.teaser--flip .teaser__card { order: 1; }

/* Typography */
.teaser__title {
  font-size: 1.8rem;
  letter-spacing: .06em;
  margin: 0 0 .35rem;
  text-transform: none;
}
.teaser__title a { color: #2f3c4a; text-decoration: none; }
.teaser__title a:hover { text-decoration: underline; }

.teaser__meta {
  color: #6c7a88;
  margin: 0 0 .75rem;
  font-size: 0.95rem;
  letter-spacing: .02em;
}
.teaser__excerpt {
  color: #424e59;
  line-height: 1.75;
  margin: 0 0 1rem;
}

/* Ghost pill button to match site */
.btn-pill.btn-pill--ghost {
  background: transparent;
  color: #8ea3b1;
  border: 1px solid #c7d6dc;
  padding: .7rem 1.2rem;
  border-radius: 999px;
  letter-spacing: .12em;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s ease, background .2s ease, opacity .15s ease;
  margin-right: 0.5em;
}
.btn-pill.btn-pill--ghost:hover {
  background: #eef4f6;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 980px) {
  .teaser {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .teaser__card,
  .teaser--flip .teaser__card {
    transform: none;           /* no overlap on small screens */
  }
}

.post-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.15));
  display: grid; place-items: center;
  padding: 0 1rem;
}

.post-hero__title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  letter-spacing: .04em;
  text-shadow: 0 3px 8px rgba(0,0,0,.5);
}

.post-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 35%;
  margin: 3.5em auto 1.25rem; /* remove top margin to avoid extra spacing under header */
}

/* Overlay uses flexbox so we can place content anywhere */
.post-hero__overlay {
  position: absolute; inset: 0;
  display: flex;
  padding: 24px;                 /* breathing room from edges */
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.15));
}

/* Vertical alignment */
.align-y-top    { align-items: flex-start; }
.align-y-center { align-items: center; }
.align-y-bottom { align-items: flex-end; }

/* Horizontal alignment */
.align-x-left   { justify-content: flex-start; }
.align-x-center { justify-content: center; }
.align-x-right  { justify-content: flex-end; }

/* Text alignment helper */
.text-left   { text-align: left; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

.post-hero__inner { max-width: min(90ch, 90%); }
.post-hero__title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: .04em;
  text-shadow: 0 3px 8px rgba(0,0,0,.5);
}

/* Optional: slightly stronger backdrop when near edges */
.align-y-top .post-hero__inner,
.align-y-bottom .post-hero__inner {
  backdrop-filter: blur(1px);
}


/* ==================================== Short Code Styles ==================================== */
.font-monvoir-gold {
  font-family: "MonVoir", cursive;
  font-weight: normal;
  font-style: normal;

  /* Horizontal gold gradient */
  background: linear-gradient(to right,
              #c8ab72 0%,   /* warm gold/darker left */
              #f4e8d0 50%,  /* light gold highlight in middle */
              #c8ab72 100%  /* warm gold/darker right */
             );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox */
  color: transparent;

  letter-spacing: 1px;
}

.font-monvoir-gold h1,
h1.font-monvoir-gold {
  font-size: 5rem;
  text-align: center;
}

.font-monvoir-gold h2,
h2.font-monvoir-gold {
  font-size: 4rem;
  text-align: center;
}

.font-monvoir-gold h3,
h3.font-monvoir-gold {
  font-size: 3rem;
  text-align: center;
}

.font-monvoir-gold h4,
h4.font-monvoir-gold {
  font-size: 2rem;
  text-align: center;
}


.font-contax-sans-gold {
  font-family: "ContaxSans55Reg", cursive;
  font-weight: normal;
  font-style: normal;

  /* Horizontal gold gradient */
  background: linear-gradient(to right,
              #c8ab72 0%,   /* warm gold/darker left */
              #f4e8d0 50%,  /* light gold highlight in middle */
              #c8ab72 100%  /* warm gold/darker right */
             );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox */
  color: transparent;

  letter-spacing: 1px;
}

.font-contax-sans-gold h1,
h1.font-contax-sans-gold {
  font-size: 3.5rem;
}

.font-contax-sans-gold h2,
h2.font-contax-sans-gold {
  font-size: 3rem;
}

.font-contax-sans-gold h3,
h3.font-contax-sans-gold {
  font-size: 1.5rem;
}

.font-contax-sans-gold h4,
h4.font-contax-sans-gold {
  font-size: 1rem;
}

/* =========================================================================================== */
/* =======================================  Grid system ====================================== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
  /* border: #c7d6dc solid 1px; */
}

.col {
  padding: 0.5rem;
  box-sizing: border-box;
  flex: 1 0 0; /* default auto fill */
  /*
  border: #c7d6dc solid 1px; 
  */
}

/* 12-column system */
.col-1  { flex: 0 0 8.333%;  max-width: 8.333%; }
.col-2  { flex: 0 0 16.666%; max-width: 16.666%; }
.col-3  { flex: 0 0 25%;     max-width: 25%; }
.col-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5  { flex: 0 0 41.666%; max-width: 41.666%; }
.col-6  { flex: 0 0 50%;     max-width: 50%; }
.col-7  { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8  { flex: 0 0 66.666%; max-width: 66.666%; }
.col-9  { flex: 0 0 75%;     max-width: 75%; }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-11 { flex: 0 0 91.666%; max-width: 91.666%; }
.col-12 { flex: 0 0 100%;    max-width: 100%; }



/* =========================================================================================== */

/* ==================================== Campaign Styles ==================================== */


/* ========================================================================================= */


.contact-content {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section .content-wrapper {
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    height: 24px;
    width: 24px;
    margin-top: 0.5rem;
    filter: opacity(0.7);
}

.contact-text h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-section h2,
    .contact-info-section h3,
    .contact-info-section p {
        text-align: center;
    }
}

/* === Drawer-scoped contact details: horizontal tiles, label above value === */
.contact-drawer .contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1rem;
  align-items: start;
}

.contact-drawer .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.contact-drawer .contact-icon {
  margin-top: 0;
  width: 28px;
  height: 28px;
  filter: opacity(0.85);
}

.contact-drawer .contact-text h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: .04em;
}

.contact-drawer .contact-text p {
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive wrap: 2 cols on tablets, 1 on phones */
@media (max-width: 768px) {
  .contact-drawer .contact-details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .contact-drawer .contact-details { grid-template-columns: 1fr; }
}

/* --- Contact drawer responsiveness --- */
@media (max-width: 768px) {
  .contact-drawer .contact-details {
    grid-template-columns: 1fr;  /* stack vertically on phones/tablets */
    text-align: center;
  }
  .contact-drawer .contact-item {
    align-items: center;
    text-align: center;
  }
}

/* --- Dubsado form loader --- */
.dubsado-loader {
  position: relative;
  width: 100%;
  height: 400px; /* approximate height of the form */
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f0f0 25%, #ffffff 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.dubsado-embed iframe {
  display: none; /* hide until loaded */
}

.dubsado-embed iframe.is-loaded {
  display: block;
}

.dubsado-embed .dubsado-loader.hidden {
  display: none;
}

/* ===== Responsive tweaks: Drawer contact details on phones ===== */
@media (max-width: 768px) {
  .contact-drawer .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .contact-drawer .contact-details {
    grid-template-columns: 1fr;              /* stack vertically on small phones */
    justify-items: center;                   /* center each tile */
  }
  .contact-drawer .contact-item {
    align-items: center;
    text-align: center;
  }
}

/* ===== Dubsado form skeleton loader ===== */
.dubsado-embed {
  position: relative;
  min-height: 520px;                         /* space reserved while loading */
}

.dubsado-embed iframe {
  width: 100% !important;
  min-height: 520px;
  border: 0;
  display: block;
}

/* Full-cover shimmering skeleton while iframe initializes */
.dubsado-embed .dubsado-skeleton {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(90deg, #f1f2f3 25%, #ffffff 50%, #f1f2f3 75%);
  background-size: 200% 100%;
  animation: dubsado-sheen 1.2s infinite linear;
  transition: opacity .25s ease, visibility .25s ease;
}

@keyframes dubsado-sheen {
  0%   { background-position: 200% 0; }
  100% { background-position: 0 0; }
}

/* Hide the skeleton once the iframe has loaded */
.dubsado-embed.is-loaded .dubsado-skeleton {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
