/* #region General Styles template */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --pure-ivory: #fffefa;
  --background-ivory:rgba(255, 254, 250, 0.1);
  --hover-ivory:rgba(255, 254, 250, 0.2);
  --warm-terracotta: #C68556;
  --deep-ocean: #1a323c;
  --primary-color: #fffefa;
  --hover-color: #C68556;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("static/CormorantGaramond-SemiBold.ttf") format("truetype");
  font-weight: 600; /* SemiBold weight */
  font-style: normal;
  font-display: swap; /* Ensures text remains visible while loading */
}
@font-face {
  font-family: "DM Sans";
  src:
    url("static/DMSans-VariableFont_opsz,wght.ttf")
      format("truetype-variations"),
    url("static/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900; /* Supports any weight from Thin (100) to Black (900) */
  font-style: normal;
  font-display: swap;
}
/* Inter - Body Font */
    @font-face {
  font-family: "bradleyitc";
  src: url("static/bradley.ttf");  }
html {
  height: 100svh;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.8rem;
  scroll-behavior: smooth;
  scroll-padding-top: 220px;
  overflow-x: hidden; /* Allows content to sit edge-to-edge behind the scrollbar */
   background-color: var(--pure-ivory);
}

body {
  min-height: 100svh;
  width: 100%;
  display: grid;
  grid-template-rows: 1fr auto; /* Row 1: Wrapper (takes remaining space), Row 2: Footer */
  grid-template-columns: 100%; /* Force 1 full-width column */
  font-family: "DM Sans", sans-serif;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  color: var(--deep-ocean);
   background-color: var(--pure-ivory);
}
html,
* {
  box-sizing: border-box; /* Essential so padding doesn't add to width */
}
img,
picture,
video {
  max-width: 100%;
  display: block;
  height: auto;
  max-height: 100%;
  font-style: italic;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--deep-ocean);
  color: var(--pure-ivory);
  padding: 0.75rem 1.25rem;
  z-index: 100;
  font-family: var(--deep-ocean);
  font-size: 0.9rem;
}
.skip-link:focus {
  left: var(--edge);
  top: var(--edge);
}
/* Wrapper takes available space to push footer down */
.wrapper {
  position: relative;
  display: flex;
  grid-row: 1/2;
  flex-direction: column;
  padding-top: 0 !important;
  width: 100%; /* Spans 100% of row 1 */
  background-color: var(--pure-ivory);
}
/* #endregion General Styles */
/* #MARK:sticky */
/* #region:Sticky Header */
.fixed-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box; /* CRITICAL: keeps padding inside 100% width */
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--pure-ivory);
  box-shadow: 0 2px 4px var(--background-ivory);
}
.logobox {
  margin: 0;
  flex-shrink: 1; /* Prevents logo from shrinking */
  max-width: 200px;
}
@media screen and (min-width: 1200px) {
.logobox {
  margin: 0;
  flex-shrink: 0; /* Prevents logo from shrinking */
    max-width: 455px;
}
}

.gennav {
  display: flex;
  flex-shrink: 1; /* Prevents navigation from shrinking */
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.langchange{
display: flex;
padding-top:0.25rem;
flex-direction: row;
min-width: 70px;
gap: 0.4rem;

}
@media screen and (min-width: 1400px) {
  .gennav {
    flex-direction: row;
  }
}
.lang-icon {
  width: 24px;
  height: 24px;
  max-width: none;
  max-height: none;
  margin: auto;
}
.sub-menu {
  background-color: var(--pure-ivory);
}
/* MARK: Claud*/
  /* #region:claud */
:root{
  --deep-ocean: #1A323C;
  --teal-darker: #12262E;
  --terracotta: #E2A375;
  --terracotta-soft: #EFC7A6;
  --cream: #F7F4EE;
  --cream-warm: #EFE7D8;
  --ink: #1A323C;
  --muted: #5C6B67;
  --line: rgba(26,50,60,0.14);
  --white: #FFFFFF;

  --font-display: "Cormorant Garamond", Georgia, serif;
 

  --max-w: 1200px;
  --edge: clamp(1.5rem, 4vw, 4rem);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}



img{ max-width:100%; display:block; }
a{ color: inherit; }

:focus-visible{
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-family: var(--font-body); font-weight:700; font-size:.85rem;
  letter-spacing:.02em; text-decoration:none; white-space:nowrap;
  padding: .85rem 1rem; border-radius: 2px; border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn-primary{ background: var(--deep-ocean); color: #FFFFFF; }
.btn-primary:hover{ background: var(--teal-darker); transform: translateY(-1px); }
.btn-ghost{ border-color: var(--deep-ocean); color: var(--deep-ocean); background:transparent; }
.btn-ghost:hover{ background: var(--deep-ocean); color: var(--cream); }
.btn-terracotta{ background: var(--terracotta); color: var(--teal-darker); }
.btn-terracotta:hover{ background:var(--pure-ivory); transform: translateY(-1px); }

/* ---------- Horizon divider (signature element) ---------- */
.horizon{
  width:100%; height: 46px; display:block;
  background: var(--cream);
}
.horizon svg{ width:100%; height:100%; display:block; }

/* ---------- Hero ---------- */
.hero{
  padding: clamp(3rem, 8vw, 6rem) 0 0;
}
.hero-grid{
  display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items:center;
}

h1{
  font-family: var(--font-display);
  font-weight:500;
  font-size: clamp(2.4rem, 5.2vw, 3rem);
  line-height: 1.08;
  margin: 0 0 1.4rem;
  color: var(--deep-ocean);
}
h1 em{ font-style: italic; color: var(--terracotta); }
.lede{
  font-size: 1.12rem; color: var(--muted); max-width: 42ch; margin: 0 0 2.2rem;
}
.cta-row{ display:flex; gap: 3rem; flex-wrap:wrap;justify-content: left; }

.hero-visual{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-visual img{
  max-width: 100%;
  height: auto;
  border-radius: 2px;
}
.hero-visual figcaption{
  margin-top: .75rem;
  font-size: .75rem;
  color: var(--muted);
}

/* ---------- Sections ---------- */
section:not(.wrapper):not(.main-nav):not(.fixed-header) {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section-narrow{ max-width: 62ch; }
h2{
  font-family: var(--font-display); font-weight:500; color: var(--deep-ocean);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height:1.15; margin: 0 0 1.3rem;
  text-wrap: balance; text-align:center;
}
p{ margin: 0 0 0.25rem 0; }
.lead-p{ font-size: 1.05rem; color: var(--muted); }

.split{
  display:grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem);
}

.bg-deep{
  background: var(--deep-ocean);
  color: var(--cream);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.bg-deep h2{ color: var(--cream); }
.bg-deep .lead-p{ color: rgba(247,244,238,0.78); }
.bg-deep .eyebrow{ color: var(--terracotta-soft); }


/* ---------- Process ---------- */
.process-list{
  list-style:none; margin: 2rem 0 0; padding:0;
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem;
}
.published-list{
  list-style:none; margin: 2rem 0 0; padding:0;
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; 
}
.process-list li{ border-top: 1px solid var(--line); padding-top: 1.1rem; }
.step-index{
  font-family: var(--font-display); font-style: italic; font-size:1.1rem;
  color: var(--terracotta); display:block; margin-bottom:.5rem;
}
.step-title{ font-weight:700; font-size: 1rem; margin: 0 0 .4rem; color: var(--deep-ocean); }
.step-text{ font-size: .92rem; color: var(--muted); margin:0; }
.process-link{
  display:inline-block; margin-top:2.2rem; font-weight:700; font-size:.9rem;
  text-decoration:none; color: var(--deep-ocean); border-bottom: 1px solid var(--terracotta);
  padding-bottom:2px;
}

/* ---------- Branchen grid ---------- */
.branchen-intro{ max-width: 80ch; margin-bottom: 2.6rem; }
.branchen-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-inline: auto; max-width: 100ch;
}
.branch-card{
  background: var(--white); border: 1px solid var(--line);
  display:flex; flex-direction:column; overflow:visible;
}
.branch-thumb{ width:100%; aspect-ratio: 5/4; background-size: cover; background-position:center; }
.branch-thumb.fashion{ background: linear-gradient(160deg,#E2A375,#c98254 60%,#7a5240); }
.branch-thumb.hospitality{ background: linear-gradient(160deg,#f0dcae,#d8a86a 55%,#1A323C); }
.branch-thumb.automotive{ background: linear-gradient(160deg,#728a72,#4a5f4f 55%,#1A323C); }
.branch-thumb.food{ background: linear-gradient(160deg,#e7b98c,#c17b46 55%,#3c2417); }
.branch-body{ padding: 1.3rem 1.4rem 1.5rem; display:flex; flex-direction:column; flex:1; }
.branch-body h3{
  font-family: var(--font-display); font-weight:500; font-size: 1.25rem;
  color: var(--deep-ocean); margin: 0 0 .6rem;
}
.branch-body p{ font-size: .88rem; color: var(--muted); margin: 0 0 1.1rem; flex:1; }
.branch-link{
  font-size: .82rem; font-weight:700; text-decoration:none; color: var(--deep-ocean);
  border-bottom: 1px solid var(--terracotta); align-self:flex-start; padding-bottom:1px;
}
.branch-card .img-tooltip::after{
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}
.branch-card .img-tooltip::before{
  display: none; /* arrow doesn't make sense centered on the image */
}
.branch-card:hover .img-tooltip::after{
  transform: translate(-50%, -50%);
}
/* ---------- Tooltip base ---------- */
.img-tooltip{
  position: relative;
  display: block;
  width: 100%;
}
.img-tooltip img{
  width: 100%;
  height: auto;
}

.img-tooltip::after{
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--deep-ocean);
  color: var(--pure-ivory);
  font-size: .8rem;
  line-height: 1.4;
  padding: .5rem .8rem;
  border-radius: 2px;
  max-width: 280px;
  white-space: normal;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 10;
}

.img-tooltip:hover::after,
.img-tooltip:focus-within::after{
  opacity: 1;
}
/* ---------- Wunschkunden ---------- */
.quote-block{
  border-left: 3px solid var(--terracotta); padding-left: 1.6rem;
  max-width: 62ch;
}

/* ---------- Portfolio teaser ---------- */
.portfolio-teaser{ text-align:center; }
.portfolio-teaser .section-narrow{ margin: 0 auto 1.8rem; }

/* ---------- About ---------- */
.about-split{ display:grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.about-portrait{
  aspect-ratio: 4/5; background: linear-gradient(150deg,#c9d4cd,#7f9089 45%,#1A323C);
  position:relative; overflow:hidden;
}

/* ---------- Final CTA ---------- */
.final-cta{ text-align:center; }
.final-cta .section-narrow{ margin: 0 auto 1.9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero-grid, .split, .about-split{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; aspect-ratio: 16/10; }
  .process-list{ grid-template-columns: repeat(2,1fr);}
   .published-list{
    grid-template-columns: 1fr;
    max-width: 420px;        /* constrain the column width */
    margin-inline: auto;     /* center the whole list in the page */
    justify-items: center;   /* center each item's content horizontally */
    text-align: center;      /* center the text/heading inside each <li> */
  }
  .branchen-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px){
  .process-list{ grid-template-columns: 1fr; }
  .branchen-grid{ grid-template-columns: 1fr; }
  .cta-row{ flex-direction:column; align-items:stretch; }
}
  /* #endregion:claud */
/* #MARK:content*/
/* #region:content */
/* #MARK: utilities */
/* #region:utilities */
.bb {
  border: 3px solid blue;
}
.br {
  border: 1px solid red;
}
.space2 {
  margin-bottom: 2rem;
}
.space1 {
  margin-bottom: 1rem;
}
.text80 {
  max-width: 80ch;
  width: fit-content;
  max-width: min(80ch, 100%);
  width: 100%;
  margin-inline: auto;
  display: block;
}
.text80w {
  width: 80ch;
  max-width: 98%;
  width: 100%;
  margin-inline: auto;
  max-width: min(80ch, 98%);
  padding-bottom: 1rem;
}
.text100 {
  max-width: 100ch;
  width: fit-content;
  max-width: min(100ch, 100%);
  width: 100%;
  margin-inline: auto;
  display: block;
}
.centerit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.underline{
  min-width: 100%;
  border-bottom: var(--deep-ocean) solid 1px;
}
.spaceh3{
  margin-top: 1.5rem;
}
/*######### links ############# */
.linkindicator {
  color: var(--deep-ocean);
}
.linkindicator::before {
  content: url("../assets/icons/link.gif");
  margin-right: 5px;
  pointer-events: none; /* Verhindert, dass das Pseudoelement Hover-Ereignisse blockiert */
}

.linkindicator:hover {
  text-decoration: underline;
}
.contact-button {
  display: inline-block;
  text-align: center;
  padding: 0.5rem 1rem;
  background-color: var(--deep-ocean);
  color: var(--pure-ivory);
  text-decoration: none;
  border-radius: 2px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.contact-button:hover {
  background-color: var(--hover-color);
  color: var(--deep-ocean);
}
.wave {
    width: 130px;
    height: 16px;
    margin: 0 auto 1.75rem;
    display: block;
  }
  .wave path {
    fill: none;
    stroke: var(--warm-terracotta, #c68556);
    stroke-width: 2.5;
    stroke-linecap: round;
  }
 .horizon-wrap{
max-width: 1200px;                       /* gleiche Breite wie dein Content-Container /
margin: clamp(2.5rem, 6vw, 4rem) auto 0;  / Abstand nach oben zu den Buttons darüber /
padding: 0 clamp(1.5rem, 4vw, 4rem);      / Luft links/rechts */
}
.horizon-line{
display: block;
width: 100%;
height: 46px;
} 
/* #endregion:utilities */

/* #MARK: content */
/* #region:content */
.content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding: 0 2rem;
}
/* #region:Hero */
.hero-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 400px; /* Forces height if content isn't stretching it */
  background-size: cover;
  background-position: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  color: var(--pure-ivory);
  padding: 2rem;
}

/* #endregion:Hero */
.content-section {
  max-width: 2000px;
  margin-inline: auto;
}
.options-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 16px;
}

.option-card {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.icon-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-heading::before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-heading.phoneicon::before {
  background-image: url("/assets/telephone.svg");
  width: 16px;
  height: 16px;
}
.icon-heading.whatsappicon::before {
  background-image: url("/assets/whatsapp_v1.svg");
  width: 16px;
  height: 16px;
}
.icon-heading.calendericon::before {
  background-image: url("/assets/calendar-date.svg");
  width: 16px;
  height: 16px;
}
.icon-heading.mailicon::before {
  background-image: url("/assets/mail.svg");
  width: 16px;
  height: 16px;
}
@media (max-width: 800px) {
  .options-container {
    flex-direction: column;
  }
}
.content-section-twocolumns {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.content-section-twocolumns .centerit {
  flex: 1 1 380px;
  max-width: 400px;
  margin: 0 auto;
}

.content-section-twocolumns .centerit img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
.name {
  font-size: 20px;
  font-weight: 600;
  font-family: "bradleyitc";
  line-height: 1.2rem;
}

.content-section-twocolumns > div:not(.centerit) {
  flex: 2 1 500px;
}

.content-section-twocolumns > div:not(.centerit) p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Stack into a single column on smaller screens */
@media (max-width: 768px) {
  .content-section-twocolumns {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .content-section-twocolumns .centerit,
  .content-section-twocolumns > div:not(.centerit) {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
  .content-section-twocolumns .centerit {
    max-width: 320px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background-color: var(--deep-ocean);
  color: var(--pure-ivory);
  display: flex;
  flex-direction: row;
  align-items: center;   /* vertically centers children */
  justify-content: center; /* optional: centers horizontally too */
  gap: 1rem;              /* replaces the margin-top spacing */
  flex-wrap: wrap;        /* so it doesn't overflow on small screens */
}
@media (max-width: 768px) {
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background-color: var(--deep-ocean);
  color: var(--pure-ivory);
  display: flex;
  flex-direction: column;
  align-items: center;   /* vertically centers children */
  justify-content: center; /* optional: centers horizontally too */
  gap: 1rem;              /* replaces the margin-top spacing */
  flex-wrap: wrap;        /* so it doesn't overflow on small screens */
}
}

.cookie-banner p {
  margin: 0; /* Removes default paragraph margin to prevent vertical misalignments */
  font-size: 0.8rem;
  text-align: center;
}

.cookie-banner a {
  color: #ffffff;
  margin-left: 0.5rem; /* Keeps link close to the main text */
  font-size: 0.9rem;
}
.cookie-banner__button {
  background-color: var(--pure-ivory);
  color: var(--deep-ocean);
  border: none;
  padding: 0.25rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  /* margin-top removed — spacing now handled by gap on the parent */
}

.cookie-banner__button:hover {
  background-color: var(--deep-ocean);
  color: var(--pure-ivory);
  outline: 2px solid var(--pure-ivory);
}

.cookie-banner__button:focus-visible {
  outline: 2px solid var(--pure-ivory);
  outline-offset: 2px;
}

/*MARK: Gallery */
/* #region:Gallery */
.galleryholder {
  display: block;
  width: 98%;
  max-width: 1700px;
  margin: 0 auto;
}
.galleryholder h1 {
  margin-top: 0;
}
.container_imgs {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-gap: 20px;
  grid-auto-flow: dense;
  max-width: 1800px;
  margin: auto;
  overflow: hidden;
}
.gallery-item {
  width: 100%;
  height: 100%;
}
.gallery-item .image {
  width: 100%;
  height: 100%;
}
.gallery-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.portrait {
  grid-row: span 8;
}
.landscape {
  grid-row: span 5;
}
@media (min-width: 600px) {
  .container_imgs {
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 1000px) {
    .container_imgs {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* #region lightbox */
  body.lb-disable-scrolling {
    overflow: hidden;
  }

  .lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: black;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    display: none;
  }

  .lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
    outline: none;
  }

  .lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;

    /* Image border */
    border: 4px solid white;
  }

  .lightbox a img {
    border: none;
  }

  .lb-outerContainer {
    position: relative;
    zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;

    /* Background color behind image.
     This is visible during transitions. */
    background-color: white;
  }

  .lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
  }

  .lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
  }

  .lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(/assets/lb/loading.gif) no-repeat;
  }

  .lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
  }

  .lb-container > .nav {
    left: 0;
  }

  .lb-nav a {
    outline: none;
    background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
  }

  .lb-prev,
  .lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
  }

  .lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(/assets/lb/prev.png) left 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }

  .lb-nav a.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  .lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(/assets/lb/next.png) right 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }

  .lb-nav a.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  .lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    zoom: 1;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }

  .lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
  }

  .lb-data {
    padding: 0 4px;
    color: #ccc;
  }

  .lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em;
  }

  .lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
  }

  .lb-data .lb-caption a {
    color: #4ae;
  }

  .lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999999;
  }

  .lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(/assets/lb/close.png) top right no-repeat;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }

  .lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  /* #endregion lightbox */
  /* #endregion:Gallery */
}

/* #endregion:content */
/*MARK: Footer */
/* #region:Footer */
  .bws-footer {
    background-color: #1a323c;
    color: #fffefa;
    font-family: Arial, Helvetica, sans-serif;
    padding: 60px 40px 30px;
    box-sizing: border-box;
  }

  .bws-footer * {
    box-sizing: border-box;
  }

  .bws-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Top area: logo + columns */
  .bws-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 254, 250, 0.2);
  }

  .bws-footer-logo img {
    height: 48px;
    width: auto;
  }

  .bws-footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
  }

  .bws-footer-col h4 {
    margin: 0 0 14px 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fffefa;
  }

  .bws-footer-col p {
    margin: 0 0 6px 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 254, 250, 0.85);
  }

  .bws-footer-col a {
    color: rgba(255, 254, 250, 0.85);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .bws-footer-col a:hover {
    color: #ffffff;
    text-decoration: underline;
  }

  .bws-footer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.85;
  }

  /* Social icons row */
  .bws-footer-social {
    display: flex;
    gap: 16px;
    margin-top: 6px;
  }

  .bws-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 254, 250, 0.1);
    transition: background-color 0.2s ease;
  }

  .bws-footer-social a:hover {
    background-color: rgba(255, 254, 250, 0.2);
  }

  .bws-footer-social img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
  }

  /* Bottom bar */
  .bws-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255, 254, 250, 0.7);
  }

  .bws-footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .bws-footer-legal a {
    color: rgba(255, 254, 250, 0.7);
    text-decoration: none;
  }

  .bws-footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 700px) {
    .bws-footer-top {
      flex-direction: column;
    }
    .bws-footer-columns {
      gap: 32px;
    }
    .bws-footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
  }
  /* #endregion:Footer */

        /* #MARK:Navigation */
          
  /* #region:Nav */
.main-nav {
  display: flex;
  justify-content: flex-end;
  width: fit-content;
  background-color: var(--pure-ivory);
  padding: 0rem 1rem;
  border-radius: 5px;
}

.nav-holder {
  display: flex;
  align-items: center;
}

/* Mobile Menu Triggers */
#sidebar-active {
  display: none;
}

.open-sidebar-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-right: 0.5rem;
  line-height: 0; /* belt-and-braces: kills any residual inline baseline gap */
}

.open-sidebar-button svg {
  display: block; /* removes the inline baseline gap under the icon */
  fill: var(--deep-ocean);
}

.close-sidebar-button svg {
  fill: var(--deep-ocean);
}

/* Mobile Sidebar Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.695);
  z-index: 1040;
  display: none;
}
#sidebar-active:checked ~ #overlay {
  display: block;
}

/* Mobile Links Container (Sidebar) */
.links-container {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 280px;
  background-color: var(--pure-ivory);
  z-index: 1050;
  padding: 2rem;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

#sidebar-active:checked ~ .links-container {
  right: 0;
}

.close-sidebar-button {
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 2rem;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--deep-ocean);
  font-weight: 600;
  transition: color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list a:hover {
  color: var(--hover-color);
}
.active {
  font-weight: 900 !important;
  color: var(--hover-color) !important;
}

/* Sub-menus (Mobile Stack) */
.sub-menu {
  display: none;
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
  background-color: white;
  border-radius: 4px;
}

.sub-menu li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--pure-ivory);
}

/* Simple Interaction for Mobile Sub-menus */
.nav-list li.is-open > .sub-menu {
  display: block;
}
.arrowicon {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  margin-left: 0.5rem;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.arrowicon.down {
  transform: rotate(45deg);
}
/* Desktop Navigation */
@media (min-width: 1250px) {
  .nav-list li:hover > a > .arrowicon,
  .nav-list li.is-open > a > .arrowicon {
    transform: rotate(90deg);
  }

  .nav-list li:hover > .sub-menu,
  .nav-list li.is-open > .sub-menu {
    display: block;
  } 

  .open-sidebar-button,
  .close-sidebar-button,
  #overlay {
    display: none;
  }

  .links-container {
    position: static;
    height: auto;
    width: auto;
    background-color: transparent;
    padding: 0;
    display: block;
    overflow: visible;
  }

  .nav-list {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }

  /* CRITICAL FIX: Anchor sub-menus relative to each top-level list item */
  .nav-list > li {
    position: relative;
  }

  .nav-list a {
    font-size: 1rem;
  }

  /* Desktop Sub-menus (Dropdowns) */
  .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--pure-ivory);
    min-width: 220px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 5px 5px;
    margin-top: 0;
  }

  .sub-menu a {
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
  }

  .sub-menu a:hover {
    background-color: var(--bg-color);
    color: var(--hover-color);
  }

  /* Nested Sub-menus */
  .sub-menu li {
    position: relative; /* Position context for flyout sub-menus */
  }

  .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-radius: 5px;
    margin-left: 0px;
  }

  /* Position submenu for the last nav item to open to the left */
  .nav-list > li:last-child > .sub-menu {
    left: auto;
    right: 0;
  }

  /* Position nested submenus of the last nav item to also open to the left */
  .nav-list > li:last-child .sub-menu .sub-menu {
    left: auto;
    right: 100%;
  }
}
  
  /* #endregion:Nav */