/*
Theme: Erizo (customized, trimmed for static rebuild)

Single stylesheet — no framework. The Bootstrap grid this used to load was
replaced by the primitives in the Layout section: .container, .split, .cards,
.measure, .half-right. Breakpoints are 768px and 992px only.
*/

/* **********************/
/* ****** Main menu******/
/* **********************/
header ul {
  margin: 0;
  padding: 0;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}
/* Sticky + opaque, not fixed + transparent. Fixed took the bar out of flow, so
   past the hero the white menu labels sat directly on top of body copy; and
   being in flow means it reserves its own height instead of needing a
   hand-maintained offset on <main>. */
/* Sticky lives on <header>, not <nav>: a sticky element only travels within
   its parent's box, and <header> is the one that spans the document. */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
header nav {
  width: 100%;
  background: #1c1b1e;
}
header .menu {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .menu li {
  position: relative;
}
header .menu li a {
  padding: 10px;
  display: flex;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  transition: 0.2s ease-in;
  position: relative;
  align-items: center;
}
header .menu li a:hover {
  color: #fff;
}
header .menu li a::after {
  position: absolute;
  content: "";
  width: 0%;
  left: 50%;
  right: 50%;
  height: 0px;
  bottom: 27px;
  transition: 0.5s;
}
header .menu li:hover a::after {
  left: 0;
  width: 100%;
  right: 0;
  background-color: #fff;
  height: 4px;
}
header .menu .current-menu-item > a {
  font-weight: 700;
  color: #ddd;
}
/* The square BFC monogram (also the favicon). The old logo.png was a fully
   transparent placeholder, so no mark rendered at all. */
.main-logo img {
  width: 56px;
  height: 56px;
  display: block;
  transition: 0.5s;
  /* The mark is a JPEG, so it carries an opaque black square. `screen` drops
     the black into the bar and keeps the white glyph. */
  mix-blend-mode: screen;
}
.mobile-menu-btn,
.mobile-menu-side {
  display: none;
}
.header-list-info {
  display: flex;
  justify-content: space-between;
}
.top-contact-info ul {
  display: inline-flex;
  list-style: none;
}
.top-contact-info ul li {
  padding: 0 4px;
}
.top-contact-info ul li a {
  color: #fff;
  font-size: 14px;
  transition: 0.5s;
  /* The social icons were 9x20 hit areas — below the WCAG 2.2 minimum. */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  padding: 0 6px;
}
.top-contact-info ul li a:hover {
  color: #daba94;
}
.top-contact-info {
  padding: 5px 0;
  background-color: #1c1b1e;
}
@media screen and (max-width:992px) {
  /* Needs `header` to outrank the `header .menu { display:flex }` above, since
     the inline menu carries both classes on one element. */
  header .main-menu {
    display: none;
  }
  .main-logo img {
    width: 44px;
    height: 44px;
  }
  .mobile-menu-btn {
    display: inline-block;
    position: relative;
    z-index: 3000000;
  }
  .menu-btn-icon {
    display: inline-block;
    position: relative;
    width: 35px;
    height: 3px;
    background-color: #fff;
    transition: 0.5s;
  }
  .menu-btn-icon::after {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 35px;
    height: 3px;
    top: -10px;
    transition: 0.5s;
  }
  .menu-btn-icon::before {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 35px;
    height: 3px;
    top: 10px;
    transition: 0.5s;
  }
  .mobile-menu-side {
    position: fixed;
    min-height: 100vh;
    min-height: 100dvh; /* accounts for mobile browser chrome */
    max-height: 100dvh;
    overflow-y: auto;
    padding: 40px 0;
    width: 100%;
    background: #1c1b1e;
    z-index: 100;
    top: 0;
    left: 100%;
    transition: 0.4s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu-side .menu li a {
    justify-content: center;
    font-size: 26px;
    padding: 16px 10px;
  }
  .mobile-menu-side .menu {
    display: block;
    width: 100%;
  }
  header .menu li a::after {
    display: none;
  }
  .email-header {
    display: none;
  }
}

/* **********************/
/* ****** Footer menu******/
/* **********************/
footer {
  background-color: #000;
  padding: 60px 0;
}
footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer .menu a {
  color: #999;
  padding: 10px 12px;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.5s;
}
footer .menu a:hover {
  color: #fff;
}
footer .copyright {
  padding: 15px;
  color: #999;
  font-size: 14px;
}
footer .copyright a {
  color: #fff;
  transition: color 0.5s;
}
footer .copyright a:hover {
  color: #ddd;
}

/* ************* */
/* Base / reset */
/* ************* */
/* Came from the Bootstrap grid bundle this file replaced. */
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
/* No overflow-x:hidden here: it would make html/body scroll containers and
   silently break the sticky header. The off-canvas drawer is position:fixed,
   so it does not extend the document's scrollable area on its own. */
body {
  background: #333;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  /* Nothing else sets a base colour, so without this every bare text node
     inherits the UA default black onto the #333 page. */
  color: #fff;
}
li {
  color: inherit;
}
section {
  background: #333;
  padding: 75px 0;
}
.double-pad-top {
  padding-top: 150px;
}
.double-pad-bottom {
  padding-bottom: 150px;
}
.double-pad {
  padding: 150px 0;
}
*:focus {
  outline: none;
}
a,
a:hover {
  text-decoration: none;
}
/* Prose links carry no class of their own; without this they fall back to the
   UA blue, which is unreadable on every dark background this theme uses. */
main a:not([class]) {
  color: #daba94;
  text-decoration: underline;
}
main a:not([class]):hover {
  color: #fff;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
h6 {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 992px) {
  section {
    padding: 30px 0;
  }
  .double-pad-top {
    padding-top: 60px;
  }
  .double-pad-bottom {
    padding-bottom: 60px;
  }
  .double-pad {
    padding: 60px 0;
  }
}
/* Headings only. Centring body copy too made every article and service
   description a ragged block that is markedly harder to read on a phone. */
@media screen and (max-width: 992px) {
  h1,
  h2,
  h3,
  h6 {
    text-align: center;
  }
}

/* ************* */
/* Layout */
/* ************* */
/* Replaces Bootstrap's 12-column grid. The site only ever needed a centred
   wrapper, a 2-up split, a card grid and a narrow reading column, so those are
   the four primitives here. One breakpoint (992px) instead of four. */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* Text beside a photo. Stacked below 992px, always text-then-media. */
.split {
  display: grid;
  gap: 40px;
}
@media (min-width: 992px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }
  /* Puts the media cell on the left on wide screens without changing source
     order, so the stacked reading order stays text-first everywhere. */
  .split--media-first > :last-child {
    order: -1;
  }
  /* Map beside a taller form: align to the top rather than centring. */
  .split--top {
    align-items: start;
  }
}

/* Copy confined to one half, over a full-bleed background image. */
.half-right {
  display: grid;
}
@media (min-width: 992px) {
  .half-right {
    grid-template-columns: 1fr 1fr;
  }
  .half-right > * {
    grid-column: 2;
  }
}

/* Card grids. */
.cards {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .cards--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Narrow column for long-form lists and steps. */
.measure {
  max-width: 900px;
  margin-inline: auto;
}

/* Centred h6 + h2 + intro block that opens most sections. */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
.section-head > :last-child {
  margin-bottom: 0;
}

/* ************* */
/* Titles */
/* ************* */
h1 {
  /* Fluid: a fixed 56px pushed long post titles past the viewport on phones. */
  font-size: clamp(28px, 5.5vw, 56px);
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  overflow-wrap: break-word;
}
h2 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 700;
  border-top: 2px solid #daba94;
  border-bottom: 2px solid #daba94;
  width: fit-content;
  min-height: 50px;
  display: flex;
  align-items: center;
}
h6 {
  color: #daba94;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 400;
}
p {
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
  margin-top: 0px;
}
p:last-of-type {
  margin-bottom: 0px;
}

/* ************* */
/* Buttons*/
/* ************* */
.color-btn-arrow {
  background: #daba94;
  /* White on #daba94 is 1.8:1; near-black takes it to 11:1. */
  color: #1c1b1e;
  border-radius: 50px;
  display: inline-block;
  width: max-content;
  padding: 16px 75px;
  border: 2px solid #daba94;
  margin: 60px 0 20px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 100%;
}
.color-btn-arrow > i {
  margin-left: 10px;
  transition: 0.5s;
}
.color-btn-arrow:hover > i {
  margin-left: 35px;
}
@media screen and (max-width:768px) {
  a img {
    margin-top: 0!important;
  }
  .color-btn-arrow {
    margin: 60px 0 0px;
  }
}

/* ************* */
/* For all */
/* ************* */
.text-center {
  text-align: center;
}
/* h2 is width:fit-content, so text-align on the parent cannot centre it —
   it needs auto margins. Previously each page patched this with an inline style. */
.text-center h2 {
  margin-left: auto;
  margin-right: auto;
}
.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ************* */
/* About us */
/* ************* */
/* Used both as an <img> and as a background-image <div>, so it needs to crop
   the same way either way. */
.about-us-img-bg {
  min-height: 440px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width:768px) {
  .about-us img {
    margin-top: 60px;
  }
}
.about-us-new {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.about-us-new::after {
  z-index: -1;
  position: absolute;
  content: "";
  left: 42%;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.9;
}
@media screen and (max-width:992px) {
  .about-us-new::after {
    left: 0!important;
    /* Full-bleed black at 0.9 hid the photo entirely; ease off so the image
       still reads behind the copy. */
    opacity: 0.75;
  }
}
/* iOS ignores background-attachment:fixed and mis-scales the image instead. */
@media (hover: none), screen and (max-width: 992px) {
  .about-us-new,
  .call-action-v3 {
    background-attachment: scroll;
  }
}

/* ************* */
/* Banner */
/* ************* */
@keyframes arrowAnimation {
  0% {
    transform: translateY(-30px);
  }
  30% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-30px);
  }
}
.banner {
  background-position: center;
  width: 100%;
  height: 450px;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  z-index: 0;
  background-repeat: no-repeat;
}
.call-action {
  position: relative;
  z-index: 0;
  /* Fallback behind the hero photo. It was #fff, i.e. white text on white
     whenever the background image had not (or could not) load. */
  background-color: #1c1b1e;
}
.banner-scroll-btn {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  animation-duration: 2s;
  animation-name: arrowAnimation;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
.scroll-btn-arrow {
  height: 20px;
  width: 2px;
  background: #fff;
  position: relative;
  margin: auto;
}
.scroll-btn-arrow::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 2px;
  height: 13px;
  bottom: -4px;
  right: -4px;
  transform: rotateZ(45deg);
}
.scroll-btn-arrow::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 2px;
  height: 13px;
  bottom: -4px;
  left: -4px;
  transform: rotateZ(-45deg);
}
.banner-scroll-btn a {
  display: inline-block;
  padding: 8px;
}
.scroll-btn-elements {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 15px 12px;
}
@media screen and (max-width:992px) {
  .banner h1 {
    font-size: 36px;
  }
}

/* ************* */
/* Banner  v4 2btns*/
/* ************* */
.banner-v4 h1,
.banner-v4 p,
.banner-v4 div {
  color: #fff;
}
.banner-v4 .scroll-btn-arrow,
.banner-v4 .scroll-btn-arrow::after,
.banner-v4 .scroll-btn-arrow::before {
  background: #fff;
}
.banner-v4 .scroll-btn-elements {
  border-color: #fff;
}
@media screen and (max-width:768px) {
  .banner-v4 a {
    margin: 60px 0 0;
  }
}

/* ************* */
/* Services */
/* ************* */
.services {
  background-color: #111;
}

/* ************* */
/* Contact form */
/* ************* */
.contact-container {
  text-align: center;
  margin-top: 60px;
}
/* Was float + a -14px nudge, which left the icon and its text off each
   other's baseline at every width. */
.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.contact-container img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}
.contact-container a,
.contact-container {
  color: #b3b3b3;
}
.contact-container a:hover {
  color: #daba94;
}
@media screen and (max-width:992px) {
  .contact-container {
    justify-content: flex-start;
    text-align: left;
  }
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  background: none;
  transition: 0.5s;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
}
.contact-form-container {
  position: relative;
}
/* Change autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active,
input:-webkit-autofill:focus {
  background-color: #FFFFFF !important;
  color: #555 !important;
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #555555 !important;
}

/* ************* */
/* Contact form v6*/
/* ************* */
.contact-form-v6 input,
.contact-form-v6 textarea {
  border-bottom: 1px solid #daba9465;
  font-size: 16px; /* <16px makes iOS Safari zoom the page on focus */
  color: #fff;
  padding: 12px 0;
  margin-bottom: 24px;
  font-family: inherit;
}
.contact-form-v6 textarea {
  min-height: 120px;
}
.contact-form-v6 input::placeholder,
.contact-form-v6 textarea::placeholder {
  color: #b3b3b3;
}
/* Absolutely-positioned labels sat on top of whatever the visitor typed —
   the original theme floated them with JS that this static build dropped. */
.contact-form-v6 label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #daba94;
}
.contact-form-v6 .contact-form-container p {
  margin: 0;
}
.contact-form-v6 input:focus,
.contact-form-v6 textarea:focus {
  border-color: #daba94;
}
.contact-form-v6 button[type="submit"] {
  background: #daba94;
  font-weight: 700;
  cursor: pointer;
  width: unset;
  border: 1px solid #daba94;
  border-radius: 50px;
  padding: 20px 60px;
  color: #1c1b1e;
  text-align: center;
  display: block;
  text-transform: uppercase;
}
.contact-form-v6 button[type="submit"]:hover > i {
  margin-left: 30px;
}
.contact-form-v6 button > i {
  margin-left: 10px;
  transition: 0.5s;
}
/* ************* */
/* Accessibility */
/* ************* */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  padding: 12px 20px;
  background: #daba94;
  color: #1c1b1e;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}
/* The theme disables focus outlines globally; restore them for keyboard use. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #daba94;
  outline-offset: 2px;
}

/* ************* */
/* Breadcrumbs */
/* ************* */
.breadcrumbs {
  background-color: #111;
  padding: 14px 0;
  border-bottom: 1px solid #daba9433;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #999;
}
.breadcrumbs li + li::before {
  content: "/";
  color: #daba94;
}
.breadcrumbs a {
  color: #ddd;
}
.breadcrumbs a:hover {
  color: #daba94;
}
.breadcrumbs [aria-current="page"] {
  color: #daba94;
}

/* ************* */
/* Home hero */
/* ************* */
/* Black to match the artwork — the inherited #333 section background showed
   as a grey seam above and below it — and bottom padding so the scroll cue
   gets its own space instead of sitting on the word CRACOW. */
.home-hero {
  position: relative;
  background: #000;
  padding: 0 0 70px;
}
.home-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.home-hero .banner-scroll-btn {
  bottom: 10px;
}
@media screen and (max-width: 992px) {
  .home-hero {
    padding: 0 0 60px;
  }
}
.hero-intro {
  background-color: #111;
  padding: 60px 0;
  text-align: center;
}
.hero-intro h1 {
  font-size: 40px;
  margin: 0 auto 24px;
}
.hero-intro p {
  max-width: 820px;
  margin: 0 auto 12px;
  font-size: 18px;
  color: #ddd;
}
@media screen and (max-width: 992px) {
  .hero-intro h1 {
    font-size: 28px;
  }
}

/* ************* */
/* FAQ */
/* ************* */
.faq {
  background-color: #111;
}
.faq h6,
.faq h2 {
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-bottom: 1px solid #daba9465;
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: #daba94;
  font-size: 26px;
  line-height: 1;
  flex: 0 0 auto;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-item summary h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-align: left;
}
.faq-item p {
  color: #ddd;
  margin: 16px 0 0;
}

/* ************* */
/* Blog posts */
/* ************* */
.post-meta {
  color: #b3b3b3;
  font-size: 14px;
  margin-bottom: 24px;
}
.post-service-link {
  margin-top: 40px;
  padding: 20px;
  border-left: 3px solid #daba94;
  background-color: #ffffff0d;
}
.post-service-link a {
  color: #daba94;
  font-weight: 700;
  text-decoration: underline;
}
.related-posts {
  margin-top: 80px;
}
.related-posts h2 {
  margin: 0 auto 40px;
}
.blog-single a {
  color: #daba94;
  text-decoration: underline;
}
.cta-alt-contact {
  margin-top: 20px;
}
.cta-alt-contact a {
  color: #daba94;
  font-weight: 700;
}

/* ************* */
/* Service page content */
/* ************* */
.content-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.content-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.5;
}
.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid #daba94;
  transform: rotate(45deg);
}
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 56px;
  margin-bottom: 28px;
  color: #fff;
  line-height: 1.5;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #daba94;
  border-radius: 50%;
  color: #daba94;
  font-weight: 700;
}
.steps li strong {
  display: block;
  margin-bottom: 4px;
}
.section-links a,
.price-note a,
.hero-intro a {
  color: #daba94;
  text-decoration: underline;
}
.price-desc {
  /* #999 on #333 is 2.8:1; #b3b3b3 clears AA at 5.9:1. */
  color: #b3b3b3 !important;
  font-size: 14px;
  margin: 6px 0 0;
  max-width: 46ch;
}
.price-note {
  margin-top: 40px;
}
.contact-hours {
  margin-top: 40px;
  color: #daba94 !important;
  font-size: 14px;
}

/* ************* */
/* Footer NAP and services */
/* ************* */
.footer-services ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
/* Match the padding of the menu above it so both footer rows share a rhythm. */
.footer-services a {
  color: #999;
  font-size: 14px;
  display: inline-block;
  padding: 10px 12px;
}
.footer-services a:hover {
  color: #daba94;
}
.footer-nap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
  font-style: normal;
  font-size: 14px;
  color: #999;
}
.footer-nap strong {
  color: #fff;
}
.footer-nap a {
  color: #999;
}
.footer-nap a:hover {
  color: #daba94;
}

.form-success-message {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #daba94;
  border-radius: 8px;
  background-color: rgba(218, 186, 148, 0.12);
}
.form-success-message p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}
.contact-form-v6 iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  border: 0;
}
.contact-form-v6 .contact-form-box {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .contact-form-v6 .contact-form-box {
    padding-top: 0;
  }
}

/* ************* */
/* Call action */
/* ************* */
/* Was `.call-action * { color:#fff!important }`, which also repainted the
   tan CTA button's label and the phone link white. */
.call-action h1,
.call-action h2,
.call-action h6,
.call-action p {
  color: #fff;
}
@media screen and (max-width:992px) {
  .call-action h1 {
    font-size: 30px;
  }
}

/* ************* */
/* Call action v3*/
/* ************* */
.call-action-v3 a {
  margin-top: 30px;
}
.call-action-v3 {
  background-attachment: fixed;
}

/* ************* */
/* Price */
/* ************* */
.price-v4 .price-title-1 {
  font-size: 22px;
  color: #daba94;
  margin: 30px 0 0;
  font-weight: 700;
}
/* name / leader line / price. Was a 5-5-2 Bootstrap row. */
.price-v4 .price-container {
  display: grid;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .price-v4 .price-container {
    grid-template-columns: minmax(0, 1fr) minmax(40px, 1fr) auto;
    align-items: end;
    column-gap: 20px;
  }
}
.price-v4 .price-value {
  color: #daba94;
  font-weight: 700;
  font-size: 26px;
  text-align: right;
  white-space: nowrap;
}
.price-v4 .price-line {
  border-bottom: 1px solid #99999980;
  /* sits on the text baseline of the row it links */
  margin-bottom: 10px;
}
/* Merged from two adjacent max-width:768/769 blocks that overrode each other
   (price-line got a margin then lost its border; price-value set margin-top
   twice). Stacked, each row becomes name / description / price. */
@media screen and (max-width: 768px) {
  .price-v4 .price-title-1,
  .price-v4 .price-value {
    text-align: center;
  }
  .price-v4 .price-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .price-v4 .price-value {
    margin-top: 10px;
  }
  .price-v4 .price-line {
    display: none;
  }
  .price-v4 .price-container {
    border-bottom: 1px solid #99999999;
    margin-bottom: 0;
    padding-bottom: 30px;
  }
  .price-v4 .price-container:last-of-type {
    border-bottom: 0;
  }
}

.color-bg {
  background-color: #111;
}

/* ************* */
/* Blog / service cards */
/* ************* */
figure.snip1091 {
  position: relative;
  display: inline-block;
  margin: 0;
  min-width: 100%;
  max-width: 310px;
  max-height: 310px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  background: #000000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
figure.snip1091 * {
  transition: all 0.35s ease-in-out;
}
figure.snip1091 .service-img {
  opacity: 0.75;
  max-width: 100%;
  position: relative;
  top: 0;
  left: 0;
}
figure.snip1091 figcaption {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  transform: rotate(0deg) translateY(-50%) scale(1);
  transform-origin: center 0;
  z-index: 1;
}
figure.snip1091 figcaption h3 {
  top: 50%;
  letter-spacing: -1px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 0;
  margin: 0;
  font-weight: 400;
  /* The caption sits on an uncontrolled photo; without this the light frames
     wash it out completely. */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}
/* Scrim so every card caption keeps its contrast regardless of the image. */
figure.snip1091::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.35s ease-in-out;
  pointer-events: none;
}
figure.snip1091:hover::before {
  background: rgba(0, 0, 0, 0.15);
}
figure.snip1091 figcaption:before,
figure.snip1091 figcaption:after {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 2px;
  position: absolute;
  content: "";
  display: block;
  transition: all 0.35s ease-in-out;
}
figure.snip1091 figcaption:before {
  left: 0;
  top: 0;
}
figure.snip1091 figcaption:after {
  bottom: 0;
  right: 0;
}
figure.snip1091.green {
  background: #daba94;
}
figure.snip1091 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}
figure.snip1091:hover .service-img,
figure.snip1091.hover .service-img {
  opacity: 1;
}
figure.snip1091:hover figcaption,
figure.snip1091.hover figcaption {
  transform: rotate(-45deg) translateY(-50%) scale(0.9);
}
figure.snip1091:hover figcaption:before,
figure.snip1091.hover figcaption:before,
figure.snip1091:hover figcaption:after,
figure.snip1091.hover figcaption:after {
  width: 200%;
}
.service-img {
  background-position: center;
  min-height: 300px;
  width: auto;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ************* */
/* Blog article */
/* ************* */
.banner-single {
  min-height: 200px;
  display: flex;
  align-items: flex-end;
}
.banner-single h1 {
  z-index: 2;
}
.banner-single-box {
  background: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.banner-single-box::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: " ";
  background-color: #000000;
  opacity: 0.7;
  z-index: 0;
}
/* Inherit rather than `.blog-single * { color:#fff }` — the universal form
   outranked .post-meta and forced !important to claw the muted grey back. */
.blog-single {
  color: #fff;
}
.blog-single li {
  line-height: 1.6;
  margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
  h2 {
    margin: 0 auto 30px;
  }
  .about-us-img-bg {
    margin-top: 30px;
  }
}

/* ************* */
/* Static-site adjustments (no JavaScript) */
/* ************* */

/* CSS-only mobile menu toggle, replacing the jQuery click handler from the
   original theme's main.js */
.mobile-menu-toggle-input {
  display: none;
}
.mobile-menu-toggle-input:checked ~ .container .menu-btn-icon {
  background-color: transparent;
}
.mobile-menu-toggle-input:checked ~ .container .menu-btn-icon::after {
  top: 0;
  transform: rotate(45deg);
}
.mobile-menu-toggle-input:checked ~ .container .menu-btn-icon::before {
  top: 0;
  transform: rotate(-45deg);
}
.mobile-menu-toggle-input:checked ~ .mobile-menu-side {
  left: 0;
}
/* Stop the page scrolling underneath the open drawer. */
body:has(.mobile-menu-toggle-input:checked) {
  overflow: hidden;
}
