/* Updated, accessible, and responsive styles */
:root{
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255,255,255,.82);
  --btn-fg: #111;
  --btn-bg: #fff;
  --btn-border: #fff;
  --focus: #79B8FF;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }

@font-face {
  font-family: "Bauer";
  /* Put the file at: cba/static/cba/fonts/Bauer-Bodoni-Regular.otf */
  src: url("/static/cba/fonts/Bauer-Bodoni-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family: "Georgia", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height:1.6;
  text-rendering: optimizeLegibility;
}

a { color: var(--fg); }
a:focus, button:focus, .btn:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  position:fixed;
  left:1rem;
  top:1rem;
  width:auto;
  height:auto;
  padding:.5rem .75rem;
  background:#222;
  color:#fff;
  border-radius:.5rem;
  z-index:2000;
}

.container{
  width:100%;
  max-width:1100px;
  margin-inline:auto;
  padding-inline:1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.header-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 1rem 1rem;
}

.logo-link { display: inline-flex; }
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  pointer-events: none;
}

/* Nav */
.main-nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav-link {
  text-decoration: none;
  color: var(--fg);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  display: block;
  transition: color 0.2s ease;
}

.main-nav-link:hover,
.main-nav-link:focus {
  color: #A7D2DD;
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-link:hover,
.dropdown-link:focus {
  background-color: rgba(167, 210, 221, 0.1);
  color: #A7D2DD;
}

@media (max-width: 768px) {
  .main-nav-list { gap: 1rem; }
  .dropdown { min-width: 160px; }
}

.hero {
  margin-top: 60px;
  min-height: 33svh;
  display: flex;
  align-items: center;
  text-align: center;
  font-weight:600;
}

.hero-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;

}

.cms-hero-subtitle,
.cms-hero-subtitle .cms_placeholder,
.cms-hero-subtitle .cms_plugin {
  width: 100%;
  text-align: center;
  display: block;
}

.cms-hero-subtitle p {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}


.cms-hero-title,
.cms-hero-subtitle,
.cms-hero-cta,
.cms-hero-title *,
.cms-hero-subtitle *,
.cms-hero-cta * {
  background: transparent;
}

.cms-hero-title > *,
.cms-hero-subtitle > * {
  margin: 0;
  text-align: center;

}

.cms-hero-title h1,
.cms-hero-title p {
  font-size: clamp(2rem, 3.25vw, 3.25rem);
  line-height:1.15;
  margin:0 0 .5rem 0;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.cms-hero-subtitle p,
.cms-hero-subtitle em,
.cms-hero-subtitle i {
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  color: var(--muted);
  margin:0 0 0 0;
  font-style: italic;
  color:white
}

/* CTA */
.cta{
  display:flex;
  gap:1.25rem;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 1rem;
}

/* Fix CMS-wrapped CTA buttons centering on mobile */
.cta{
  width: 100%;
  justify-content: center;   
}

.cta .cms_placeholder,
.cta .cms_plugin,
.cta p{
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta a.btn{
  margin: 0;
}


.btn{
  width:170px;
  padding:.5rem 1rem;
  text-decoration:none;
  font-size: clamp(1.1rem, 2vw, 1rem);
  font-weight:600;
  border:1px solid var(--btn-border);
  background:var(--btn-bg);
  color:var(--btn-fg);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.btn:hover{
  background-color:#A7D2DD;
  border-color:#A7D2DD;
}

.btn-secondary{
  background:#fff;
  color:#000;
}

/* Gallery */
.gallery {
  padding-block: 2rem 3rem;
  text-align: center;
}

/* Home gallery layout */
.gallery-inner{
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gallery-slot{
  margin: 0;
  width: 420px;           
  max-width: 100%;
  aspect-ratio: 4 / 3;    
  overflow: hidden;
  background: #111;
}


.gallery-slot > *,
.gallery-slot .cms_placeholder,
.gallery-slot .cms_plugin,
.gallery-slot p,
.gallery-slot a{
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  display: block !important;
}

.gallery-slot img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  filter: grayscale(100%);
}


.dots {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.dot.active,
.dot:hover {
  background-color: #fff;
}

/* Footer */
.site-footer{
  padding-block:2rem 3rem;
}

.footer-inner{
  display:flex;
  flex-direction:column;
  gap:1rem;
  align-items:center;
  text-align:center;
}

.social-list{
  list-style:none;
  display:flex;
  gap:1.5rem;
  align-items:center;
  padding:0;
  margin:0;
  flex-wrap:wrap;
}

.social-link{
  text-decoration:none;
  color:var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.social-link:hover{ opacity: 0.7; }

.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.nav-list{
  list-style:none;
  display:flex;
  gap:1rem;
  margin:0;
  padding:0;
}
.nav-link{
  text-decoration:none;
  color:var(--muted);
}
.nav-link:hover,
.nav-link:focus{
  color:var(--fg);
  text-decoration:underline;
  text-underline-offset: 2px;
}

.copyright{
  color:var(--muted);
  margin:0;
}

hr {
  margin: 50px 200px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.about-gallery .gallery-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-gallery .gallery-item {
  overflow: hidden;
  background: #111;
}

.about-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;       
  object-fit: cover;         
  display: block;
}

.hero--subpage{
  margin-top: 20px;                
  padding: 80px 0 80px;
  min-height: auto;
  background: #0b4f6c;           
}

.hero--subpage .hero-inner{
  gap: 0.75rem;
}

.hero--subpage .hero-title{
  font-family: "Bauer", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  letter-spacing: .06em;
  margin: 0;
  text-transform: uppercase;
}

.hero--subpage .hero-subtitle{
  font-family: "Bauer", Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-style: italic;
  color: rgba(255,255,255,.92);
  margin: 0;
}

.section{
  padding: 20px 0;
}

.section--dark{
  background: #000;
}

.content-narrow{
  max-width: 900px;
  margin-inline: auto;
}

.section--dark h2{
  font-family: "Bauer", Georgia, serif;
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.section--dark p{
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,.9);
}

.section-title{
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 1.5rem auto;
  text-align: center;
}

.section-title .cms_placeholder,
.section-title .cms_plugin,
.section-title p{
  margin: 0 !important;
  text-align: center !important;
}


.gallery-grid-2x3{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.gallery-tile{
  margin: 0;                
  background: #111;
  overflow: hidden;
  aspect-ratio: 1 / 1;       
  display: flex;             
  align-items: stretch;
}

.gallery-tile > p{
  margin: 0 !important;
  width: 100%;
}

.gallery-tile a{
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-tile img{
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
  filter: grayscale(0%);
}

@media (max-width: 768px){
  .gallery-grid-2x3{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px){
  .gallery-grid-2x3{
    grid-template-columns: 1fr;
  }
}


.book-now{
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 1rem 60px; 
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.65)),
    url("/static/cba/img/book-now-bg.jpg");
  background-size: cover;
  background-position: center;
}

.book-now__card{
  width: min(860px, 100%);
  padding: 48px 56px;
  border-radius: 22px;
  background: rgba(35,35,35,.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

.book-now__title{
  margin: 0 0 .5rem 0;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.1;
  font-family: "Bauer", Georgia, serif;
}

.book-now__subtitle{
  margin: 0 0 1.75rem 0;
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
}

.book-now__form p{
  margin: 0 0 1rem 0;
}

.book-now__form label{
  display: block;
  margin: 0 0 .4rem 0;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

.book-now__form input,
.book-now__form select,
.book-now__form textarea{
  width: 100%;
  max-width: 100%;
  padding: .85rem .95rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.95);
  color: #111;
  font-size: 1rem;
}

.book-now__errors{
  padding: .75rem 1rem;
  border-radius: 10px;
  margin: 0 0 1rem 0;
  background: rgba(255, 80, 80, .15);
  border: 1px solid rgba(255, 80, 80, .35);
}

@media (max-width: 640px){
  .book-now__card{ padding: 28px 20px; }
}

.rates-card{
  max-width: 500px;
  margin: 2.5rem auto;
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}

.rates-card__title{
  text-align: center;
  margin: 0 0 1.5rem 0;
}

.rates-grid{
  display: grid;
  gap: 0.75rem;
}

.rates-row{
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}

.rates-card p{ margin: 0; }

.faq-section{
  background: #000;
  padding: 70px 0 90px;
}

.faq-inner{
  max-width: 980px;
  margin-inline: auto;
}


.faq-list{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-list details > summary.faq-summary{
  list-style: none !important;      
  cursor: pointer;

  display: flex ;
  align-items: center;
  justify-content: space-between;

  padding: 18px 22px;
  gap: 18px;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.15);
  color: #fff;

  font-family: "Bauer", Georgia, serif;
  font-size: 1.35rem;
}

.faq-list details > summary.faq-summary::-webkit-details-marker{
  display: none !important;
}

.faq-list details > summary.faq-summary::marker{
  content: "" !important;
}

.faq-list details > summary.faq-summary > *{
  flex: 1 1 auto;
}

.faq-list details > summary.faq-summary::after{
  content: "+";
  flex: 0 0 auto;

  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease;
}

.faq-list details[open] > summary.faq-summary::after{
  transform: rotate(45deg);
}

.faq-answer{
  padding: 14px 22px 18px;
  border-left: 1px solid rgba(255,255,255,.15);
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  border-radius: 0 0 14px 14px;
  background: rgba(0,0,0,.08);
}

.faq-answer p{
  margin: 0;
  color: rgba(255,255,255,.9);
}


.faq-summary .cms_placeholder,
.faq-summary .cms_plugin,
.faq-summary p{
  margin: 0 !important;
  padding: 0 !important;
}

.faq-summary .cms_placeholder,
.faq-summary .cms_plugin{
  display: contents; 
}

.faq-answer .cms_placeholder,
.faq-answer .cms_plugin{
  display: block;
}

.faq-answer p{
  margin: 0 0 1rem 0;
}

.faq-answer p:first-child{
  margin-top: 0 !important;
}

.faq-answer p:last-child{
  margin-bottom: 0 !important;
}

.faq-list details > summary.faq-question,
.faq-list details > summary.faq-summary {
  list-style: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  gap: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.15);
  color: #fff;
  font-family: "Bauer", Georgia, serif;
  font-size: 1.35rem;
}

.faq-list details > summary.faq-question::-webkit-details-marker,
.faq-list details > summary.faq-summary::-webkit-details-marker {
  display: none !important;
}

.faq-list details > summary.faq-question::marker,
.faq-list details > summary.faq-summary::marker {
  content: "" !important;
}

.faq-list details > summary.faq-question::after,
.faq-list details > summary.faq-summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease;
}

.faq-list details[open] > summary.faq-question::after,
.faq-list details[open] > summary.faq-summary::after {
  transform: rotate(45deg);
}

  .process-editorial{
    padding: 56px 0;
  }

  .process-editorial__header{
    margin-bottom: 28px;
    text-align: left;
  }

  .process-editorial__title{
    margin: 0 0 10px 0;
  }

  .process-editorial__steps{
    display: grid;
    gap: 22px;
  }

  .process-editorial__step{
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.299);
  }

  .process-editorial__step:last-child{
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .process-editorial__left{
    position: relative;
    display: grid;
    justify-items: center;
    padding-top: 6px;
  }

  .process-editorial__num{
    font-family: "Bauer", Georgia, serif;
    font-size: 44px;
    line-height: 1;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, 0.338);
    user-select: none;
  }

  .process-editorial__rail{
    width: 2px;
    height: 100%;
    min-height: 120px;
    margin-top: 10px;
    background: rgba(255,255,255,.10);
    border-radius: 999px;
  }

  .process-editorial__rail--end{
    background: linear-gradient(to bottom, rgba(255,255,255,.10), transparent);
  }

  .process-editorial__heading{
    margin: 0 0 6px 0;
    font-family: "Bauer", Georgia, serif;
    font-size: 1.6rem;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .process-editorial__text{
    margin: 0 0 12px 0;
    color: rgba(255,255,255,.88);
  }

  .process-editorial__list{
    margin: 0 0 14px 0;
    padding-left: 1.1rem;
    color: rgba(255,255,255,.88);
  }

  .process-editorial__list li{
    margin: .55rem 0;
    line-height: 1.5;
  }

  .process-editorial__callout{
    font-size: large;
    font-weight: 600;
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(11, 79, 108, .45); 
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.92);
  }

  @media (max-width: 720px){
    .process-editorial__step{
      grid-template-columns: 56px 1fr;
      gap: 14px;
    }
    .process-editorial__num{ font-size: 38px; }
    .process-editorial__heading{ font-size: 1.35rem; }
  }

  @media (max-width: 768px){

  /* Fomatting of header for mobile dimensions */
  .header-inner{
    flex-wrap: wrap;      
    gap: .75rem 1rem;
    padding: 1rem;
  }

  .logo-link{
    flex: 0 0 auto; 
  }         

  .main-nav{
    width: 75%;           
  }

  .main-nav-list{
    flex-wrap: wrap;        
    justify-content: center;
    gap: .75rem 1.25rem;
  }

  .main-nav-link{
    white-space: nowrap;   
  }
}