/* =============================================================
   BridgeWater Mobile Navigation
   ============================================================= */

@media (max-width: 1023px) {
  /* Mobile menu wrapper */
  .bw-mobile-menu-panel {
    position: fixed;

    inset: 0;

    z-index: 60;

    width: 100%;
    height: 100dvh;

    overflow-y: auto;
    overflow-x: hidden;

    background: #080808;

    -webkit-overflow-scrolling: touch;
  }

  /* Mobile menu inner container */
  .bw-mobile-menu-inner {
    width: min(100% - 3rem, 680px);

    margin-inline: auto;

    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  /* =========================================================
       Mobile Menu Header
       ========================================================= */

  .bw-mobile-menu-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    padding-bottom: 2rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* =========================================================
       Mobile Logo
       ========================================================= */

  .bw-mobile-menu-header .bw-site-logo,
  .bw-mobile-menu-header .custom-logo,
  .bw-mobile-menu-header img {
    display: block;

    width: auto;

    height: 58px;

    max-width: 180px;

    max-height: 58px;

    object-fit: contain;

    object-position: left center;
  }

  /* =========================================================
       Mobile Close Button
       ========================================================= */

  .bw-mobile-close {
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);

    background: transparent;

    color: #ffffff;

    cursor: pointer;
  }

  /* =========================================================
       Mobile Menu List
       ========================================================= */

  .bw-mobile-menu {
    margin-top: 1rem;

    padding: 0;
  }

  .bw-mobile-menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bw-mobile-menu > li > a {
    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 0.82rem;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
      color 0.25s ease,
      padding-left 0.25s ease;
  }

  .bw-mobile-menu > li > a:hover {
    color: #c8b78e;

    padding-left: 5px;
  }

  /* =========================================================
       Mobile Dropdown
       ========================================================= */

  .bw-mobile-menu .sub-menu {
    margin: 0;

    padding: 0 0 1rem 1.25rem;

    list-style: none;
  }

  .bw-mobile-menu .sub-menu li {
    list-style: none;

    border: 0;
  }

  .bw-mobile-menu .sub-menu a {
    display: block;

    padding: 0.7rem 0;

    color: #a9a9a9;

    font-family: "Manrope", sans-serif;

    font-size: 0.72rem;

    font-weight: 500;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition:
      color 0.25s ease,
      padding-left 0.25s ease;
  }

  .bw-mobile-menu .sub-menu a:hover {
    color: #c8b78e;

    padding-left: 5px;
  }
}

/* =============================================================
   Smaller Phones
   ============================================================= */

@media (max-width: 480px) {
  .bw-mobile-menu-inner {
    width: min(100% - 2rem, 680px);

    padding-top: 1.25rem;
  }

  .bw-mobile-menu-header {
    padding-bottom: 1.5rem;
  }

  .bw-mobile-menu-header .bw-site-logo,
  .bw-mobile-menu-header .custom-logo,
  .bw-mobile-menu-header img {
    height: 50px;

    max-width: 155px;

    max-height: 50px;
  }

  .bw-mobile-menu > li > a {
    min-height: 64px;

    font-size: 0.76rem;
  }
}

/* =============================================================
   BridgeWater Global Layout
   ============================================================= */

.bw-container {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

@media (min-width: 640px) {
  .bw-container {
    width: min(100% - 3rem, 1280px);
  }
}

@media (min-width: 1024px) {
  .bw-container {
    width: min(100% - 4rem, 1280px);
  }
}

/* =============================================================
   Section Spacing
   ============================================================= */

.bw-section {
  padding-block: 3rem;
}

@media (min-width: 768px) {
  .bw-section {
    padding-block: 3rem;
  }
}

@media (min-width: 1024px) {
  .bw-section {
    padding-block: 2rem;
  }
}

/* =============================================================
   BridgeWater Logo
   ============================================================= */

.bw-site-logo {
  display: block;

  width: auto;
  height: 52px;

  max-width: 210px;
  max-height: 64px;

  object-fit: contain;
  object-position: center;
}

@media (min-width: 1024px) {
  .bw-site-logo {
    height: 60px;
    max-width: 230px;
  }
}

/* =============================================================
   BridgeWater Header
   ============================================================= */

#site-header {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1);

  transition:
    background-color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

/* =============================================================
   Header After Scroll
   ============================================================= */

#site-header.bw-header-scrolled {
  background-color: rgba(8, 8, 8, 0.88);

  border-color: rgba(200, 183, 142, 0.16);

  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.18);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* =============================================================
   Mobile Header After Scroll
   ============================================================= */

@media (max-width: 1023px) {
  #site-header.bw-header-scrolled {
    background-color: rgba(8, 8, 8, 0.95);
  }
}

/* =============================================================
   Desktop Navigation
   ============================================================= */

.bw-primary-menu {
  display: flex;

  align-items: center;

  gap: 2rem;

  margin: 0;
  padding: 0;

  list-style: none;
}

.bw-primary-menu > li {
  position: relative;

  margin: 0;
  padding: 0;

  list-style: none;
}

.bw-primary-menu > li > a {
  position: relative;

  display: inline-flex;

  align-items: center;

  padding: 1rem 0;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.68rem;

  font-weight: 600;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  transition: color 0.3s ease;
}

/* =============================================================
   Navigation Gold Underline
   ============================================================= */

.bw-primary-menu > li > a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 7px;

  width: 0;
  height: 1px;

  background: #c8b78e;

  transition: width 0.3s ease;
}

.bw-primary-menu > li:hover > a,
.bw-primary-menu > li.current-menu-item > a,
.bw-primary-menu > li.current-menu-ancestor > a {
  color: #c8b78e;
}

.bw-primary-menu > li:hover > a::after,
.bw-primary-menu > li.current-menu-item > a::after,
.bw-primary-menu > li.current-menu-ancestor > a::after {
  width: 100%;
}

/* =============================================================
   Desktop Dropdown
   ============================================================= */
.bw-primary-menu .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -20px;
  min-width: 230px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: #111111;
  border: 1px solid rgba(200, 183, 142, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  z-index: 100;
}

.bw-primary-menu > li:hover > .sub-menu {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

/* =============================================================
   Dropdown Items
   ============================================================= */

.bw-primary-menu .sub-menu li {
  margin: 0;
  padding: 0;

  list-style: none;
}

.bw-primary-menu .sub-menu a {
  display: block;

  padding: 12px 22px;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.67rem;

  font-weight: 500;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    padding-left 0.25s ease;
}

.bw-primary-menu .sub-menu a:hover {
  color: #c8b78e;

  background: rgba(200, 183, 142, 0.07);

  padding-left: 27px;
}

/* =============================================================
   Header CTA
   ============================================================= */

.bw-header-cta {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  min-height: 48px;

  padding: 0 24px;

  background: #c8b78e;

  color: #080808;

  font-family: "Manrope", sans-serif;

  font-size: 0.67rem;

  font-weight: 700;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.bw-header-cta:hover {
  background: #e8d9b5;
}

/* =============================================================
   Mobile Toggle
   IMPORTANT:
   Hidden on desktop.
   ============================================================= */

.bw-mobile-toggle {
  position: relative;

  z-index: 70;

  display: none;

  width: 44px;
  height: 44px;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: transparent;

  color: #ffffff;

  cursor: pointer;
}

/* Show mobile button below desktop breakpoint */

@media (max-width: 1023px) {
  .bw-mobile-toggle {
    display: flex;
  }
}

/* =============================================================
   Hamburger Lines
   ============================================================= */

.bw-menu-line {
  position: absolute;

  width: 20px;
  height: 1px;

  background: currentColor;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.bw-menu-line:nth-child(2) {
  transform: translateY(-6px);
}

.bw-menu-line:nth-child(3) {
  transform: translateY(0);
}

.bw-menu-line:nth-child(4) {
  transform: translateY(6px);
}

/* =============================================================
   Mobile Navigation
   ============================================================= */

.bw-mobile-menu {
  margin: 0;

  padding: 0;

  list-style: none;
}

.bw-mobile-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  list-style: none;
}

.bw-mobile-menu > li > a {
  display: flex;

  min-height: 62px;

  align-items: center;
  justify-content: space-between;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.8rem;

  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.bw-mobile-menu > li > a:hover {
  color: #c8b78e;
}

/* =============================================================
   Mobile Submenu
   ============================================================= */

.bw-mobile-menu .sub-menu {
  margin: 0;

  padding: 0 0 10px 18px;

  list-style: none;
}

.bw-mobile-menu .sub-menu li {
  list-style: none;
}

.bw-mobile-menu .sub-menu a {
  display: block;

  padding: 10px 0;

  color: #aaaaaa;

  font-family: "Manrope", sans-serif;

  font-size: 0.7rem;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  transition: color 0.25s ease;
}

.bw-mobile-menu .sub-menu a:hover {
  color: #c8b78e;
}

/* =============================================================
   WordPress Admin Bar
   ============================================================= */

body.admin-bar #site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar #site-header {
    top: 46px;
  }
}

/* hero page.php styling */
/* =============================================================
   BridgeWater Hero
   ============================================================= */

.bw-hero {
  isolation: isolate;
}

/* =============================================================
   Hero Primary Button
   ============================================================= */

.bw-hero-primary-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 1rem;

  min-height: 52px;

  padding-inline: 1.75rem;

  background: #c8b78e;

  color: #080808;

  font-family: "Manrope", sans-serif;

  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.bw-hero-primary-btn:hover {
  background: #e8d9b5;

  transform: translateY(-2px);
}

/* =============================================================
   Hero Secondary Button
   ============================================================= */

.bw-hero-secondary-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding-inline: 1.75rem;

  border: 1px solid rgba(255, 255, 255, 0.3);

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.68rem;

  font-weight: 600;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease;
}

.bw-hero-secondary-btn:hover {
  border-color: #c8b78e;

  color: #c8b78e;

  background: rgba(200, 183, 142, 0.06);
}

/* =============================================================
   Mobile Hero
   ============================================================= */

@media (max-width: 767px) {
  .bw-hero {
    min-height: calc(100svh - 76px);
  }

  .bw-hero-primary-btn,
  .bw-hero-secondary-btn {
    width: 100%;
  }
}

/* search.php page styling starts from here */
/* =============================================================
   BridgeWater Property Search
   ============================================================= */

.bw-property-search {
  position: relative;
  z-index: 20;
  margin-top: -1px;
}

.bw-search-form {
  width: 100%;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =============================================================
   Search Tabs
   ============================================================= */

.bw-search-tabs {
  display: flex;
  align-items: center;
  gap: 3rem;

  min-height: 82px;

  padding: 0 2rem;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bw-search-tab {
  position: relative;

  height: 82px;

  padding: 0;

  border: 0;

  background: transparent;

  color: rgba(255, 255, 255, 0.5);

  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.16em;

  cursor: pointer;

  transition: color 0.3s ease;
}

.bw-search-tab::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: #c8b78e;

  transition: width 0.3s ease;
}

.bw-search-tab:hover,
.bw-search-tab.is-active {
  color: #c8b78e;
}

.bw-search-tab.is-active::after {
  width: 100%;
}

/* =============================================================
   Search Fields
   ============================================================= */

.bw-search-fields {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr)
    minmax(0, 1fr)
    minmax(0, 1fr)
    220px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bw-search-field {
  min-height: 136px;

  padding: 2rem 1.75rem;

  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.bw-search-field label {
  display: block;

  margin-bottom: 1.25rem;

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.65rem;
  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.bw-search-field select {
  width: 100%;

  padding: 0;

  border: 0;
  outline: none;

  appearance: none;

  background-color: transparent;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.85rem;
  font-weight: 500;

  cursor: pointer;

  background-image:
    linear-gradient(45deg, transparent 50%, #c8b78e 50%),
    linear-gradient(135deg, #c8b78e 50%, transparent 50%);

  background-position:
    calc(100% - 10px) 50%,
    calc(100% - 5px) 50%;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}

.bw-search-field select option {
  background: #111111;
  color: #ffffff;
}

/* =============================================================
   Search Button
   ============================================================= */

.bw-search-submit {
  display: flex;

  min-height: 136px;

  align-items: stretch;
}

.bw-search-submit button {
  width: 100%;

  border: 0;

  background: #c8b78e;

  color: #080808;

  font-family: "Manrope", sans-serif;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.15em;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.bw-search-submit button:hover {
  background: #e2d1a7;
}

/* =============================================================
   Search Footer
   ============================================================= */

.bw-search-footer {
  display: flex;

  min-height: 62px;

  align-items: center;
  justify-content: space-between;

  padding: 0 1.75rem;
}

.bw-search-footer span,
.bw-search-footer a {
  font-family: "Manrope", sans-serif;

  font-size: 0.65rem;

  letter-spacing: 0.02em;
}

.bw-search-footer span {
  color: rgba(255, 255, 255, 0.45);
}

.bw-search-footer a {
  color: #c8b78e;

  transition: color 0.3s ease;
}

.bw-search-footer a:hover {
  color: #ffffff;
}

/* =============================================================
   Tablet
   ============================================================= */

@media (max-width: 1024px) {
  .bw-search-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bw-search-submit {
    min-height: 90px;
  }
}

/* =============================================================
   Mobile
   ============================================================= */

@media (max-width: 640px) {
  .bw-search-tabs {
    min-height: 68px;

    gap: 2rem;

    padding: 0 1.25rem;
  }

  .bw-search-tab {
    height: 68px;

    font-size: 0.62rem;
  }

  .bw-search-fields {
    grid-template-columns: 1fr;
  }

  .bw-search-field {
    min-height: auto;

    padding: 1.5rem 1.25rem;

    border-right: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bw-search-submit {
    min-height: 64px;
  }

  .bw-search-footer {
    min-height: 72px;

    padding: 0 1.25rem;

    gap: 1rem;

    align-items: flex-start;
    justify-content: center;

    flex-direction: column;
  }
}

/* about.php page styling starts from here */
/* =============================================================
   BridgeWater — About / Why BridgeWater
   ============================================================= */

.bw-about-section {
  position: relative;

  padding-block: 7rem;

  background: #080808;

  overflow: hidden;
}

/* =============================================================
   Main Grid
   ============================================================= */

.bw-about-grid {
  display: grid;

  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

  gap: 7rem;

  align-items: center;
}

/* =========================================================
   ABOUT — LEFT VISUAL
   ========================================================= */

.bw-about-visual {
  position: relative;
  min-height: 680px;
  height: 100%;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(200, 183, 142, 0.25);
}

/* Background image wrapper */
.bw-about-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark overlay */
.bw-about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}

/* Existing content sits above image */
.bw-about-visual-inner {
  position: relative;
  z-index: 2;
  min-height: 680px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
}

/* Number */
.bw-about-number {
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #c8b78e;
}

/* Bottom content */
.bw-about-visual-content {
  max-width: 500px;
}

/* Dubai */
.bw-about-location {
  display: block;
  margin-bottom: 18px;

  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c8b78e;
}

/* Heading */
.bw-about-visual-content h3 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #ffffff;
}

/* Gold line */
.bw-about-line {
  display: block;
  width: 135px;
  height: 1px;
  margin-top: 30px;
  background: #c8b78e;
}

/* =============================================================
   Right Content
   ============================================================= */

.bw-about-content {
  max-width: 680px;
}

.bw-section-eyebrow {
  margin-bottom: 1.5rem;

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.65rem;

  font-weight: 700;

  letter-spacing: 0.22em;

  text-transform: uppercase;
}

/* =============================================================
   Heading
   ============================================================= */

.bw-about-title {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3rem, 5vw, 5.5rem);

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.04em;
}

.bw-about-title span {
  color: #c8b78e;
}

/* =============================================================
   Divider
   ============================================================= */

.bw-about-divider {
  width: 70px;

  height: 1px;

  margin-block: 2.25rem;

  background: #c8b78e;
}

/* =============================================================
   Paragraphs
   ============================================================= */

.bw-about-text {
  max-width: 620px;

  margin: 0 0 1.25rem;

  color: rgba(255, 255, 255, 0.55);

  font-family: "Manrope", sans-serif;

  font-size: 0.9rem;

  font-weight: 400;

  line-height: 1.9;
}

.bw-about-text-large {
  color: rgba(255, 255, 255, 0.82);

  font-size: 1.05rem;

  line-height: 1.8;
}

/* =============================================================
   Stats
   ============================================================= */

.bw-about-stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  margin-top: 3rem;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bw-about-stat {
  display: flex;

  min-height: 110px;

  padding: 1.5rem 1.25rem;

  flex-direction: column;

  justify-content: center;

  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.bw-about-stat:last-child {
  border-right: 0;
}

.bw-about-stat strong {
  display: block;

  margin-bottom: 0.5rem;

  color: #c8b78e;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 2rem;

  font-weight: 400;

  line-height: 1;
}

.bw-about-stat span {
  color: rgba(255, 255, 255, 0.45);

  font-family: "Manrope", sans-serif;

  font-size: 0.55rem;

  font-weight: 700;

  letter-spacing: 0.12em;

  line-height: 1.6;
}

/* =============================================================
   About CTA
   ============================================================= */

.bw-about-link {
  display: inline-flex;

  align-items: center;

  gap: 1.5rem;

  margin-top: 2.5rem;

  padding-bottom: 0.75rem;

  border-bottom: 1px solid #c8b78e;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.65rem;

  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.bw-about-link:hover {
  color: #c8b78e;

  gap: 2rem;
}

/* =============================================================
   Large Tablet
   ============================================================= */

@media (max-width: 1200px) {
  .bw-about-grid {
    gap: 4rem;
  }

  .bw-about-visual,
  .bw-about-visual-inner {
    min-height: 540px;
  }
}

/* =============================================================
   Tablet
   ============================================================= */

@media (max-width: 1024px) {
  .bw-about-section {
    padding-block: 6rem;
  }

  .bw-about-grid {
    grid-template-columns: 1fr;

    gap: 4rem;
  }

  .bw-about-visual {
    max-width: 700px;

    min-height: 500px;

    margin-inline: auto;

    width: 100%;
  }

  .bw-about-visual-inner {
    min-height: 500px;
  }

  .bw-about-content {
    max-width: 800px;
  }
}

/* =============================================================
   Mobile
   ============================================================= */

@media (max-width: 640px) {
  .bw-about-section {
    padding-block: 4.5rem;
  }

  .bw-about-grid {
    gap: 3.5rem;
  }

  .bw-about-visual {
    min-height: 390px;
  }

  .bw-about-visual-inner {
    min-height: 390px;

    padding: 1.5rem;
  }

  .bw-about-visual::before {
    inset: 12px;
  }

  .bw-about-visual-content {
    padding-left: 1rem;
  }

  .bw-about-visual-content h3 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .bw-about-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .bw-about-divider {
    margin-block: 1.75rem;
  }

  .bw-about-text {
    font-size: 0.82rem;

    line-height: 1.8;
  }

  .bw-about-text-large {
    font-size: 0.95rem;
  }

  .bw-about-stats {
    grid-template-columns: 1fr;

    margin-top: 2.5rem;
  }

  .bw-about-stat {
    min-height: 90px;

    border-right: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bw-about-stat:last-child {
    border-bottom: 0;
  }

  .bw-about-link {
    margin-top: 2rem;
  }
}

/* featured projects.php page styling starts from here  */
/* =============================================================
   BridgeWater — Featured Projects
   ============================================================= */

.bw-projects-section {
  position: relative;

  padding-block: 7rem;

  background: #0b0b0b;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;
}

/* =============================================================
   Section Header
   ============================================================= */

.bw-projects-header {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 3rem;

  margin-bottom: 4rem;
}

.bw-projects-title {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3rem, 5vw, 5.5rem);

  font-weight: 400;

  line-height: 0.95;

  letter-spacing: -0.04em;
}

.bw-projects-title span {
  color: #c8b78e;
}

/* =============================================================
   View All
   ============================================================= */

.bw-projects-view-all {
  display: inline-flex;

  align-items: center;

  gap: 1rem;

  padding-bottom: 0.7rem;

  border-bottom: 1px solid #c8b78e;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.15em;

  white-space: nowrap;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.bw-projects-view-all:hover {
  color: #c8b78e;

  gap: 1.5rem;
}

/* =============================================================
   Project Grid
   ============================================================= */

.bw-projects-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1.5rem;
}

/* =============================================================
   Project Card
   ============================================================= */

.bw-project-card {
  position: relative;

  min-width: 0;
}

/* =============================================================
   Project Image
   ============================================================= */

.bw-project-image {
  position: relative;

  display: block;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  background: #151515;
}

.bw-project-image img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.bw-project-card:hover .bw-project-image img {
  transform: scale(1.06);
}

/* =============================================================
   Placeholder
   ============================================================= */

.bw-project-image-placeholder {
  display: flex;

  width: 100%;

  height: 100%;

  align-items: center;

  justify-content: center;

  background:
    radial-gradient(
      circle at center,
      rgba(200, 183, 142, 0.15),
      transparent 55%
    ),
    #111111;
}

.bw-project-image-placeholder span {
  color: rgba(200, 183, 142, 0.5);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.2rem;

  letter-spacing: 0.3em;
}

/* =============================================================
   Image Overlay
   ============================================================= */

.bw-project-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.75) 100%
  );

  pointer-events: none;
}

/* =============================================================
   Status
   ============================================================= */

.bw-project-status {
  position: absolute;

  top: 1.25rem;

  left: 1.25rem;

  padding: 0.55rem 0.75rem;

  background: rgba(8, 8, 8, 0.8);

  border: 1px solid rgba(200, 183, 142, 0.4);

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.55rem;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

/* =============================================================
   Image Arrow
   ============================================================= */

.bw-project-arrow {
  position: absolute;

  right: 1.25rem;

  bottom: 1.25rem;

  display: flex;

  width: 46px;

  height: 46px;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.35);

  color: #ffffff;

  font-size: 1rem;

  opacity: 0;

  transform: translateY(10px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
}

.bw-project-card:hover .bw-project-arrow {
  opacity: 1;

  transform: translateY(0);
}

.bw-project-arrow:hover {
  background: #c8b78e;

  color: #080808;
}

/* =============================================================
   Project Content
   ============================================================= */

.bw-project-content {
  padding-top: 1.5rem;
}

.bw-project-location {
  display: block;

  margin-bottom: 0.7rem;

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.58rem;

  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.bw-project-name {
  margin: 0;
}

.bw-project-name a {
  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(1.6rem, 2vw, 2.25rem);

  font-weight: 400;

  line-height: 1.05;

  transition: color 0.3s ease;
}

.bw-project-name a:hover {
  color: #c8b78e;
}

/* =============================================================
   Developer
   ============================================================= */

.bw-project-developer {
  display: block;

  margin-top: 0.7rem;

  color: rgba(255, 255, 255, 0.4);

  font-family: "Manrope", sans-serif;

  font-size: 0.55rem;

  font-weight: 600;

  letter-spacing: 0.12em;
}

/* =============================================================
   Project Link
   ============================================================= */

.bw-project-link {
  display: inline-flex;

  align-items: center;

  gap: 0.8rem;

  margin-top: 1.5rem;

  padding-bottom: 0.6rem;

  border-bottom: 1px solid rgba(200, 183, 142, 0.5);

  color: rgba(255, 255, 255, 0.65);

  font-family: "Manrope", sans-serif;

  font-size: 0.57rem;

  font-weight: 700;

  letter-spacing: 0.13em;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.bw-project-link:hover {
  color: #c8b78e;

  gap: 1.2rem;
}

/* =============================================================
   Bottom CTA
   ============================================================= */

.bw-projects-bottom {
  display: flex;

  justify-content: center;

  margin-top: 4rem;
}

.bw-projects-main-link {
  display: inline-flex;

  align-items: center;

  gap: 1.25rem;

  padding: 1rem 1.5rem;

  border: 1px solid rgba(200, 183, 142, 0.45);

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.6rem;

  font-weight: 700;

  letter-spacing: 0.15em;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.bw-projects-main-link:hover {
  background: #c8b78e;

  border-color: #c8b78e;

  color: #080808;
}

/* =============================================================
   Empty State
   ============================================================= */

.bw-projects-empty {
  padding: 6rem 2rem;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bw-projects-empty h3 {
  margin: 1rem 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(2rem, 4vw, 3.5rem);

  font-weight: 400;
}

.bw-projects-empty p {
  max-width: 500px;

  margin: auto;

  color: rgba(255, 255, 255, 0.5);

  font-family: "Manrope", sans-serif;

  font-size: 0.85rem;

  line-height: 1.8;
}

/* =============================================================
   Tablet
   ============================================================= */

@media (max-width: 1024px) {
  .bw-projects-section {
    padding-block: 6rem;
  }

  .bw-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bw-project-card:last-child {
    grid-column: 1 / -1;

    max-width: calc(50% - 0.75rem);

    width: 100%;

    margin-inline: auto;
  }
}

/* =============================================================
   Mobile
   ============================================================= */

@media (max-width: 640px) {
  .bw-projects-section {
    padding-block: 4.5rem;
  }

  .bw-projects-header {
    display: block;

    margin-bottom: 2.5rem;
  }

  .bw-projects-title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .bw-projects-view-all {
    margin-top: 2rem;
  }

  .bw-projects-grid {
    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .bw-project-card:last-child {
    grid-column: auto;

    max-width: none;

    margin-inline: 0;
  }

  .bw-project-image {
    aspect-ratio: 4 / 5;
  }

  .bw-project-arrow {
    opacity: 1;

    transform: none;
  }

  .bw-project-content {
    padding-top: 1.25rem;
  }

  .bw-project-name a {
    font-size: 1.8rem;
  }

  .bw-projects-bottom {
    margin-top: 3rem;
  }

  .bw-projects-main-link {
    width: 100%;

    justify-content: center;
  }
}

/* featured-properties.php page styling ends here  */
/* =============================================================
   BridgeWater — Featured Properties
   ============================================================= */

.bw-properties-section {
  position: relative;

  padding-block: 7rem;

  background: #080808;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;
}

/* =============================================================
   Header
   ============================================================= */

.bw-properties-header {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 3rem;

  margin-bottom: 4rem;
}

.bw-properties-heading {
  max-width: 720px;
}

.bw-properties-title {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3rem, 5vw, 5.5rem);

  font-weight: 400;

  line-height: 0.95;

  letter-spacing: -0.04em;
}

.bw-properties-title span {
  color: #c8b78e;
}

.bw-properties-intro {
  max-width: 500px;

  margin: 1.5rem 0 0;

  color: rgba(255, 255, 255, 0.5);

  font-family: "Manrope", sans-serif;

  font-size: 0.85rem;

  line-height: 1.8;
}

/* =============================================================
   View All
   ============================================================= */

.bw-properties-view-all {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #c8b78e;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.bw-properties-view-all:hover {
  color: #c8b78e;

  gap: 1.5rem;
}

/* =============================================================
   Grid
   ============================================================= */

.bw-properties-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1.5rem;
}

/* =============================================================
   Card
   ============================================================= */

.bw-property-card {
  min-width: 0;

  background: #111111;

  border: 1px solid rgba(255, 255, 255, 0.07);

  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}

.bw-property-card:hover {
  border-color: rgba(200, 183, 142, 0.35);

  transform: translateY(-5px);
}

/* =============================================================
   Image
   ============================================================= */

.bw-property-image {
  position: relative;

  display: block;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #151515;
}

.bw-property-image img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.bw-property-card:hover .bw-property-image img {
  transform: scale(1.06);
}

/* =============================================================
   Image Overlay
   ============================================================= */

.bw-property-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.02) 30%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

/* =============================================================
   Placeholder
   ============================================================= */

.bw-property-image-placeholder {
  display: flex;

  width: 100%;

  height: 100%;

  align-items: center;

  justify-content: center;

  background:
    radial-gradient(
      circle at center,
      rgba(200, 183, 142, 0.12),
      transparent 55%
    ),
    #111111;
}

.bw-property-image-placeholder span {
  color: rgba(200, 183, 142, 0.45);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1rem;

  letter-spacing: 0.3em;
}

/* =============================================================
   Purpose Badge
   ============================================================= */

.bw-property-purpose {
  position: absolute;

  top: 1rem;

  left: 1rem;

  padding: 0.55rem 0.7rem;

  background: rgba(8, 8, 8, 0.85);

  border: 1px solid rgba(200, 183, 142, 0.45);

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.54rem;

  font-weight: 700;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

/* =============================================================
   Arrow
   ============================================================= */

.bw-property-arrow {
  position: absolute;

  right: 1rem;

  bottom: 1rem;

  display: flex;

  width: 44px;

  height: 44px;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.35);

  color: #ffffff;

  opacity: 0;

  transform: translateY(10px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.bw-property-card:hover .bw-property-arrow {
  opacity: 1;

  transform: translateY(0);
}

.bw-property-arrow:hover {
  background: #c8b78e;

  color: #080808;
}

/* =============================================================
   Content
   ============================================================= */

.bw-property-content {
  padding: 1.5rem;
}

/* =============================================================
   Price
   ============================================================= */

.bw-property-price {
  margin-bottom: 0.65rem;

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.08em;
}

/* =============================================================
   Property Title
   ============================================================= */

.bw-property-title {
  margin: 0;
}

.bw-property-title a {
  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(1.45rem, 2vw, 2rem);

  font-weight: 400;

  line-height: 1.1;

  transition: color 0.3s ease;
}

.bw-property-title a:hover {
  color: #c8b78e;
}

/* =============================================================
   Location
   ============================================================= */

.bw-property-location {
  display: flex;

  align-items: center;

  gap: 0.45rem;

  margin-top: 0.7rem;

  color: rgba(255, 255, 255, 0.5);

  font-family: "Manrope", sans-serif;

  font-size: 0.65rem;
}

.bw-property-location span {
  color: #c8b78e;

  font-size: 0.45rem;
}

/* =============================================================
   Details
   ============================================================= */

.bw-property-details {
  display: flex;

  flex-wrap: wrap;

  gap: 0;

  margin-top: 1.3rem;

  padding-block: 1rem;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bw-property-details span {
  position: relative;

  padding-inline: 0.75rem;

  color: rgba(255, 255, 255, 0.55);

  font-family: "Manrope", sans-serif;

  font-size: 0.58rem;

  letter-spacing: 0.04em;
}

.bw-property-details span:first-child {
  padding-left: 0;
}

.bw-property-details span + span::before {
  content: "";

  position: absolute;

  left: 0;

  top: 50%;

  width: 1px;

  height: 12px;

  background: rgba(255, 255, 255, 0.15);

  transform: translateY(-50%);
}

/* =============================================================
   Property Link
   ============================================================= */

.bw-property-link {
  display: inline-flex;

  align-items: center;

  gap: 0.8rem;

  margin-top: 1.4rem;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.57rem;

  font-weight: 700;

  letter-spacing: 0.13em;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.bw-property-link:hover {
  color: #c8b78e;

  gap: 1.2rem;
}

/* =============================================================
   Empty State
   ============================================================= */

.bw-properties-empty {
  padding: 6rem 2rem;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bw-properties-empty h3 {
  max-width: 700px;

  margin: 1rem auto;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(2rem, 4vw, 3.5rem);

  font-weight: 400;

  line-height: 1.05;
}

.bw-properties-empty p {
  max-width: 500px;

  margin-inline: auto;

  color: rgba(255, 255, 255, 0.5);

  font-family: "Manrope", sans-serif;

  font-size: 0.85rem;

  line-height: 1.8;
}

/* =============================================================
   Bottom CTA
   ============================================================= */

.bw-properties-bottom {
  display: flex;

  justify-content: center;

  margin-top: 4rem;
}

.bw-properties-main-link {
  display: inline-flex;

  align-items: center;

  gap: 1.2rem;

  padding: 1rem 1.5rem;

  border: 1px solid rgba(200, 183, 142, 0.45);

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.6rem;

  font-weight: 700;

  letter-spacing: 0.15em;

  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.bw-properties-main-link:hover {
  background: #c8b78e;

  color: #080808;
}

/* =============================================================
   Tablet
   ============================================================= */

@media (max-width: 1024px) {
  .bw-properties-section {
    padding-block: 6rem;
  }

  .bw-properties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =============================================================
   Mobile
   ============================================================= */

@media (max-width: 640px) {
  .bw-properties-section {
    padding-block: 4.5rem;
  }

  .bw-properties-header {
    display: block;

    margin-bottom: 2.5rem;
  }

  .bw-properties-title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .bw-properties-intro {
    font-size: 0.78rem;

    line-height: 1.8;
  }

  .bw-properties-view-all {
    margin-top: 2rem;
  }

  .bw-properties-grid {
    grid-template-columns: 1fr;

    gap: 2rem;
  }

  .bw-property-image {
    aspect-ratio: 4 / 3;
  }

  .bw-property-arrow {
    opacity: 1;

    transform: none;
  }

  .bw-property-content {
    padding: 1.25rem;
  }

  .bw-property-title a {
    font-size: 1.7rem;
  }

  .bw-property-details span {
    margin-bottom: 0.3rem;
  }

  .bw-properties-main-link {
    width: 100%;

    justify-content: center;

    text-align: center;
  }
}

/* locations.php page styling starts from here  */
/* =========================================================
   BRIDGEWATER — LOCATIONS
   ========================================================= */

.bw-locations-section {
  position: relative;
  background: #080808;
  color: #ffffff;
  overflow: hidden;
}

/* =========================================================
   HEADER
   ========================================================= */

.bw-locations-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.bw-locations-heading {
  max-width: 760px;
}

.bw-locations-title {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.bw-locations-title span {
  color: #c8b78e;
}

.bw-locations-intro {
  max-width: 620px;
  margin-top: 28px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

.bw-locations-view-all {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;

  padding-bottom: 12px;

  border-bottom: 1px solid rgba(200, 183, 142, 0.7);

  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: #ffffff;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.bw-locations-view-all:hover {
  color: #c8b78e;
  border-color: #c8b78e;
}

/* =========================================================
   SLIDER WRAPPER
   ========================================================= */

.bw-locations-slider-wrapper {
  position: relative;
  width: 100%;
}

/* =========================================================
   SLIDER
   ========================================================= */

.bw-locations-slider {
  display: flex;

  width: 100%;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  scrollbar-width: none;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.bw-locations-slider::-webkit-scrollbar {
  display: none;
}

/* =========================================================
   LOCATION CARD
   ========================================================= */

.bw-location-card {
  position: relative;

  flex: 0 0 calc(25% - 1px);

  min-height: 365px;

  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(200, 183, 142, 0.08),
      transparent 45%
    ),
    #0b0b0b;

  scroll-snap-align: start;

  transition:
    background 0.4s ease,
    transform 0.4s ease;
}

.bw-location-card:hover {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(200, 183, 142, 0.14),
      transparent 50%
    ),
    #111111;
}

/* =========================================================
   CARD LINK
   ========================================================= */

.bw-location-card-link {
  position: relative;

  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;
  min-height: 365px;

  padding: 40px;

  color: #ffffff;

  text-decoration: none;
}

/* =========================================================
   NUMBER
   ========================================================= */

.bw-location-number {
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #c8b78e;
}

/* =========================================================
   CONTENT
   ========================================================= */

.bw-location-card-content {
  margin-top: auto;
}

.bw-location-country {
  display: block;

  margin-bottom: 16px;

  font-family: "Manrope", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;

  color: rgba(255, 255, 255, 0.45);
}

.bw-location-name {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1;
  font-weight: 500;

  color: #ffffff;

  transition: color 0.3s ease;
}

.bw-location-card:hover .bw-location-name {
  color: #c8b78e;
}

.bw-location-count {
  display: block;

  margin-top: 22px;

  font-family: "Manrope", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;

  color: rgba(255, 255, 255, 0.35);
}

/* =========================================================
   ARROW
   ========================================================= */

.bw-location-card-arrow {
  position: absolute;

  right: 40px;
  bottom: 40px;

  font-size: 1.2rem;

  color: #c8b78e;

  opacity: 0;

  transform: translateX(-8px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.bw-location-card:hover .bw-location-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   SLIDER BUTTONS
   ========================================================= */

.bw-location-slider-btn {
  position: absolute;

  top: 50%;

  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(200, 183, 142, 0.5);

  background: rgba(8, 8, 8, 0.95);

  color: #c8b78e;

  font-family: "Manrope", sans-serif;
  font-size: 1rem;

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.bw-location-slider-btn:hover {
  background: #c8b78e;
  border-color: #c8b78e;
  color: #080808;
}

.bw-location-slider-prev {
  left: -24px;
}

.bw-location-slider-next {
  right: -24px;
}

/* =========================================================
   SLIDER FOOTER
   ========================================================= */

.bw-location-slider-footer {
  display: flex;
  align-items: center;
  gap: 24px;

  margin-top: 24px;
}

.bw-location-slider-progress {
  display: block;

  width: 120px;
  height: 1px;

  background: rgba(255, 255, 255, 0.15);
}

#bw-location-slider-progress {
  display: block;

  width: 25%;
  height: 1px;

  background: #c8b78e;

  transition: width 0.3s ease;
}

.bw-location-slider-hint {
  font-family: "Manrope", sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.35);
}

/* =========================================================
   SECTION FOOTER
   ========================================================= */

.bw-locations-footer {
  display: flex;
  align-items: center;
  gap: 24px;

  margin-top: 70px;

  font-family: "Manrope", sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;

  color: rgba(255, 255, 255, 0.3);
}

.bw-locations-footer-line {
  flex: 1;
  height: 1px;

  background: rgba(255, 255, 255, 0.1);
}

/* =========================================================
   EMPTY STATE
   ========================================================= */

.bw-locations-empty {
  padding: 100px 40px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  text-align: center;

  background: #0b0b0b;
}

.bw-locations-empty h3 {
  margin-top: 20px;

  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 500;

  color: #ffffff;
}

.bw-locations-empty p {
  max-width: 550px;

  margin: 20px auto 0;

  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
  .bw-locations-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .bw-location-card {
    flex: 0 0 50%;
  }

  .bw-location-slider-prev {
    left: 12px;
  }

  .bw-location-slider-next {
    right: 12px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {
  .bw-locations-title {
    font-size: 3.8rem;
  }

  .bw-locations-intro {
    font-size: 0.8rem;
  }

  .bw-location-card {
    flex: 0 0 85%;
    min-height: 320px;
  }

  .bw-location-card-link {
    min-height: 320px;
    padding: 28px;
  }

  .bw-location-slider-btn {
    width: 40px;
    height: 40px;
  }

  .bw-location-slider-prev {
    left: 8px;
  }

  .bw-location-slider-next {
    right: 8px;
  }

  .bw-location-slider-hint {
    display: none;
  }

  .bw-locations-footer {
    margin-top: 45px;
  }
}

/* =========================================================
   LOCATIONS — FINAL SPACING / DIVIDERS FIX
   ========================================================= */

.bw-locations-section {
  background: #080808;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  min-height: auto !important;
}

/* =========================================================
   HEADER
   ========================================================= */

.bw-locations-header {
  position: relative;

  padding-bottom: 45px;
  margin-bottom: 0 !important;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* =========================================================
   SLIDER
   ========================================================= */

.bw-locations-slider-wrapper {
  position: relative;

  margin-top: 0 !important;
}

/*
 * Clear divider immediately above the cards.
 */

.bw-locations-slider {
  border-top: 0 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================================
   LOCATION CARDS
   ========================================================= */

.bw-location-card {
  border-top: 0 !important;
}

/* =========================================================
   SLIDER FOOTER
   ========================================================= */

.bw-location-slider-footer {
  margin-top: 28px !important;
  margin-bottom: 0 !important;
}

/* =========================================================
   LOCATION SECTION FOOTER
   ========================================================= */

.bw-locations-footer {
  margin-top: 55px !important;
  margin-bottom: 0 !important;

  padding-bottom: 35px !important;
}

/* =========================================================
   REMOVE EXTRA SPACE FROM COMMON WRAPPERS
   ========================================================= */

.bw-locations-section > .bw-container {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {
  .bw-locations-header {
    padding-bottom: 30px;
  }

  .bw-locations-footer {
    margin-top: 40px !important;
    padding-bottom: 25px !important;
  }
}

/* =========================================================
   LOCATION CARD
   ========================================================= */

.bw-location-card {
  position: relative;
  overflow: hidden;
}

/* =========================================================
   CARD LINK
   ========================================================= */

.bw-location-card-link {
  position: relative;

  display: block;

  width: 100%;
  height: 100%;
  min-height: 420px;

  overflow: hidden;
}

/* =========================================================
   BACKGROUND IMAGE
   ========================================================= */

.bw-location-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;

  opacity: 0;

  transform: scale(1);

  z-index: 0;

  transition:
    opacity 0.6s ease,
    transform 0.8s ease;
}

/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.bw-location-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(8, 8, 8, 0.45) 55%,
    rgba(8, 8, 8, 0.2) 100%
  );

  opacity: 0;

  transition: opacity 0.6s ease;
}

/* =========================================================
   CONTENT — FIXED ABOVE IMAGE
   ========================================================= */

.bw-location-number {
  position: absolute;

  top: 48px;
  left: 40px;

  z-index: 3;
}

.bw-location-card-content {
  position: absolute;

  left: 40px;
  right: 40px;
  bottom: 60px;

  z-index: 3;
}

.bw-location-card-arrow {
  position: absolute;

  right: 40px;
  bottom: 60px;

  z-index: 3;
}

/* =========================================================
   HOVER
   ========================================================= */

.bw-location-card:hover .bw-location-image {
  opacity: 1;

  transform: scale(1.06);
}

.bw-location-card:hover .bw-location-overlay {
  opacity: 1;
}

/* =========================================================
   TEXT ABOVE IMAGE
   ========================================================= */

.bw-location-card:hover .bw-location-number,
.bw-location-card:hover .bw-location-card-content,
.bw-location-card:hover .bw-location-card-arrow {
  transform: none;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .bw-location-card-link {
    min-height: 360px;
  }

  .bw-location-image {
    opacity: 1;
  }

  .bw-location-overlay {
    opacity: 1;
  }

  .bw-location-number {
    top: 30px;
    left: 25px;
  }

  .bw-location-card-content {
    left: 25px;
    right: 25px;
    bottom: 40px;
  }

  .bw-location-card-arrow {
    right: 25px;
    bottom: 40px;
  }
}

/* trust.php page styling starts from here  */
/* =============================================================
   BridgeWater — Why Choose / Trust
   ============================================================= */

.bw-trust-section {
  position: relative;

  padding-block: 8rem;

  background: #080808;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;
}

/* =============================================================
   Main Grid
   ============================================================= */

.bw-trust-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap: 8rem;

  align-items: start;
}

/* =============================================================
   Intro
   ============================================================= */

.bw-trust-intro {
  position: sticky;

  top: 120px;

  max-width: 560px;
}

.bw-trust-title {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3.2rem, 5vw, 5.5rem);

  font-weight: 400;

  line-height: 0.95;

  letter-spacing: -0.045em;
}

.bw-trust-title span {
  color: #c8b78e;
}

.bw-trust-description {
  max-width: 500px;

  margin: 2rem 0 0;

  color: rgba(255, 255, 255, 0.52);

  font-family: "Manrope", sans-serif;

  font-size: 0.88rem;

  line-height: 1.9;
}

/* =============================================================
   CTA
   ============================================================= */

.bw-trust-link {
  display: inline-flex;

  align-items: center;

  gap: 1rem;

  margin-top: 2.5rem;

  padding-bottom: 0.7rem;

  border-bottom: 1px solid #c8b78e;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.15em;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.bw-trust-link:hover {
  color: #c8b78e;

  gap: 1.5rem;
}

/* =============================================================
   Trust Items
   ============================================================= */

.bw-trust-points {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bw-trust-item {
  display: grid;

  grid-template-columns: 70px minmax(0, 1fr);

  gap: 2rem;

  padding-block: 2.5rem;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bw-trust-number {
  padding-top: 0.35rem;

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.6rem;

  font-weight: 700;

  letter-spacing: 0.15em;
}

.bw-trust-item-content h3 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(1.7rem, 2.5vw, 2.7rem);

  font-weight: 400;

  line-height: 1.05;

  letter-spacing: -0.025em;
}

.bw-trust-item-content h3 span {
  color: #c8b78e;
}

.bw-trust-item-content p {
  max-width: 580px;

  margin: 1rem 0 0;

  color: rgba(255, 255, 255, 0.45);

  font-family: "Manrope", sans-serif;

  font-size: 0.78rem;

  line-height: 1.8;
}

/* =============================================================
   Hover Interaction
   ============================================================= */

.bw-trust-item {
  transition:
    padding-left 0.35s ease,
    background-color 0.35s ease;
}

.bw-trust-item:hover {
  padding-left: 1rem;

  background: rgba(200, 183, 142, 0.025);
}

.bw-trust-item-content h3 {
  transition: transform 0.35s ease;
}

.bw-trust-item:hover h3 {
  transform: translateX(4px);
}

/* =============================================================
   Tablet
   ============================================================= */

@media (max-width: 1024px) {
  .bw-trust-section {
    padding-block: 6rem;
  }

  .bw-trust-grid {
    grid-template-columns: 1fr;

    gap: 4rem;
  }

  .bw-trust-intro {
    position: static;

    max-width: 750px;
  }
}

/* =============================================================
   Mobile
   ============================================================= */

@media (max-width: 640px) {
  .bw-trust-section {
    padding-block: 4.5rem;
  }

  .bw-trust-grid {
    gap: 3rem;
  }

  .bw-trust-title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .bw-trust-description {
    margin-top: 1.5rem;

    font-size: 0.8rem;

    line-height: 1.8;
  }

  .bw-trust-link {
    margin-top: 2rem;
  }

  .bw-trust-item {
    grid-template-columns: 40px minmax(0, 1fr);

    gap: 1rem;

    padding-block: 2rem;
  }

  .bw-trust-number {
    font-size: 0.52rem;
  }

  .bw-trust-item-content h3 {
    font-size: 1.55rem;

    line-height: 1.08;
  }

  .bw-trust-item-content p {
    font-size: 0.75rem;

    line-height: 1.75;
  }

  .bw-trust-item:hover {
    padding-left: 0;
  }

  .bw-trust-item:hover h3 {
    transform: none;
  }
}

/* testimonials.php page styling starts from here  */
/* =============================================================
   BridgeWater — Testimonials
   ============================================================= */

.bw-testimonials-section {
  position: relative;

  padding-block: 8rem;

  background: #0b0b0b;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;
}

/* =============================================================
   Header
   ============================================================= */

.bw-testimonials-header {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  margin-bottom: 4rem;
}

.bw-testimonials-title {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3rem, 5vw, 5.5rem);

  font-weight: 400;

  line-height: 0.95;

  letter-spacing: -0.04em;
}

.bw-testimonials-title span {
  color: #c8b78e;
}

/* =============================================================
   Testimonials Grid
   ============================================================= */

.bw-testimonials-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1px;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================================================
   Testimonial Card
   ============================================================= */

.bw-testimonial-card {
  position: relative;

  min-height: 430px;

  padding: 2.5rem;

  background: #0b0b0b;

  transition: background-color 0.4s ease;
}

.bw-testimonial-card:hover {
  background: #111111;
}

/* =============================================================
   Top
   ============================================================= */

.bw-testimonial-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  margin-bottom: 4rem;
}

.bw-testimonial-number {
  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.58rem;

  font-weight: 700;

  letter-spacing: 0.15em;
}

.bw-testimonial-quote-mark {
  color: #c8b78e;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 5rem;

  font-weight: 400;

  line-height: 0.5;

  opacity: 0.65;
}

/* =============================================================
   Testimonial Text
   ============================================================= */

.bw-testimonial-text {
  margin: 0;

  color: rgba(255, 255, 255, 0.78);

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(1.25rem, 1.8vw, 1.65rem);

  font-weight: 400;

  line-height: 1.5;

  letter-spacing: -0.015em;
}

/* =============================================================
   Author
   ============================================================= */

.bw-testimonial-author {
  display: flex;

  align-items: center;

  gap: 1rem;

  margin-top: 3rem;
}

.bw-testimonial-author-line {
  width: 35px;

  height: 1px;

  background: #c8b78e;
}

.bw-testimonial-author strong {
  display: block;

  margin-bottom: 0.3rem;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.65rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.bw-testimonial-author span {
  display: block;

  color: rgba(255, 255, 255, 0.35);

  font-family: "Manrope", sans-serif;

  font-size: 0.5rem;

  font-weight: 600;

  letter-spacing: 0.13em;
}

/* =============================================================
   Tablet
   ============================================================= */

@media (max-width: 1024px) {
  .bw-testimonials-section {
    padding-block: 6rem;
  }

  .bw-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bw-testimonial-card:last-child {
    grid-column: 1 / -1;

    max-width: calc(50% - 0.5px);

    width: 100%;

    margin-inline: auto;
  }
}

/* =============================================================
   Mobile
   ============================================================= */

@media (max-width: 640px) {
  .bw-testimonials-section {
    padding-block: 4.5rem;
  }

  .bw-testimonials-header {
    margin-bottom: 2.5rem;
  }

  .bw-testimonials-title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .bw-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .bw-testimonial-card:last-child {
    grid-column: auto;

    max-width: none;
  }

  .bw-testimonial-card {
    min-height: auto;

    padding: 2rem 1.5rem;
  }

  .bw-testimonial-top {
    margin-bottom: 3rem;
  }

  .bw-testimonial-quote-mark {
    font-size: 4rem;
  }

  .bw-testimonial-text {
    font-size: 1.2rem;

    line-height: 1.55;
  }

  .bw-testimonial-author {
    margin-top: 2.5rem;
  }
}

/* cta.php section styling starts from here  */
/* =============================================================
   BridgeWater — Final Enquiry CTA
   ============================================================= */

.bw-final-cta {
  position: relative;

  padding-block: 8rem;

  background: #c8b78e;

  overflow: hidden;
}

/* =============================================================
   Background Decoration
   ============================================================= */

.bw-final-cta-background {
  position: absolute;

  top: -50%;
  right: -10%;

  width: 700px;
  height: 700px;

  border: 1px solid rgba(8, 8, 8, 0.12);

  border-radius: 50%;

  pointer-events: none;
}

.bw-final-cta-background::before {
  content: "";

  position: absolute;

  inset: 70px;

  border: 1px solid rgba(8, 8, 8, 0.08);

  border-radius: 50%;
}

.bw-final-cta-background::after {
  content: "";

  position: absolute;

  inset: 140px;

  border: 1px solid rgba(8, 8, 8, 0.06);

  border-radius: 50%;
}

/* =============================================================
   Inner
   ============================================================= */

.bw-final-cta-inner {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);

  gap: 5rem;

  align-items: center;
}

/* =============================================================
   Eyebrow
   ============================================================= */

.bw-final-cta .bw-section-eyebrow {
  color: rgba(8, 8, 8, 0.6);
}

/* =============================================================
   Title
   ============================================================= */

.bw-final-cta-title {
  margin: 0;

  color: #080808;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3.5rem, 6vw, 7rem);

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.bw-final-cta-title span {
  color: #ffffff;
}

/* =============================================================
   Description
   ============================================================= */

.bw-final-cta-description {
  max-width: 600px;

  margin: 2rem 0 0;

  color: rgba(8, 8, 8, 0.65);

  font-family: "Manrope", sans-serif;

  font-size: 0.9rem;

  line-height: 1.9;
}

/* =============================================================
   Action
   ============================================================= */

.bw-final-cta-action {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

/* =============================================================
   Main Button
   ============================================================= */

.bw-final-cta-button {
  display: inline-flex;

  min-width: 280px;

  min-height: 72px;

  padding: 0 2rem;

  align-items: center;

  justify-content: space-between;

  gap: 2rem;

  background: #080808;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.65rem;

  font-weight: 700;

  letter-spacing: 0.15em;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.bw-final-cta-button:hover {
  background: #171717;

  transform: translateY(-3px);
}

.bw-final-cta-button-arrow {
  color: #c8b78e;

  font-size: 1rem;

  transition: transform 0.3s ease;
}

.bw-final-cta-button:hover .bw-final-cta-button-arrow {
  transform: translateX(5px);
}

/* =============================================================
   Contact
   ============================================================= */

.bw-final-cta-contact {
  display: flex;

  margin-top: 2rem;

  flex-direction: column;

  gap: 0.5rem;
}

.bw-final-cta-contact span {
  color: rgba(8, 8, 8, 0.5);

  font-family: "Manrope", sans-serif;

  font-size: 0.52rem;

  font-weight: 700;

  letter-spacing: 0.15em;
}

.bw-final-cta-contact a {
  color: #080808;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.3rem;

  transition: color 0.3s ease;
}

.bw-final-cta-contact a:hover {
  color: #ffffff;
}

/* =============================================================
   Tablet
   ============================================================= */

@media (max-width: 1024px) {
  .bw-final-cta {
    padding-block: 6rem;
  }

  .bw-final-cta-inner {
    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .bw-final-cta-action {
    align-items: flex-start;
  }
}

/* =============================================================
   Mobile
   ============================================================= */

@media (max-width: 640px) {
  .bw-final-cta {
    padding-block: 4.5rem;
  }

  .bw-final-cta-background {
    top: 20%;

    right: -70%;

    width: 500px;
    height: 500px;
  }

  .bw-final-cta-title {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .bw-final-cta-description {
    margin-top: 1.5rem;

    font-size: 0.8rem;

    line-height: 1.8;
  }

  .bw-final-cta-action {
    width: 100%;
  }

  .bw-final-cta-button {
    width: 100%;

    min-width: 0;

    min-height: 64px;
  }

  .bw-final-cta-contact {
    margin-top: 1.5rem;
  }
}

/* footer.php  */
/* =============================================================
   BridgeWater Footer
   ============================================================= */

.bw-footer {
  position: relative;

  background: #080808;

  color: #ffffff;

  border-top: 1px solid rgba(200, 183, 142, 0.12);
}

/* =============================================================
   Footer Main
   ============================================================= */

.bw-footer-main {
  display: grid;

  grid-template-columns:
    minmax(240px, 1.6fr)
    repeat(4, minmax(140px, 1fr));

  gap: 4rem;

  padding-top: 6rem;
  padding-bottom: 5rem;
}

/* =============================================================
   Footer Brand
   ============================================================= */

.bw-footer-brand {
  max-width: 330px;
}

.bw-footer-logo {
  display: inline-flex;

  align-items: center;

  margin-bottom: 1.75rem;
}

.bw-footer-logo img {
  display: block;

  width: auto;

  height: 68px;

  max-width: 210px;

  object-fit: contain;
}

.bw-footer-logo span {
  font-family: "Cormorant Garamond", serif;

  font-size: 2rem;

  letter-spacing: 0.12em;

  color: #c8b78e;
}

.bw-footer-description {
  margin: 0;

  max-width: 310px;

  color: rgba(255, 255, 255, 0.48);

  font-family: "Manrope", sans-serif;

  font-size: 0.75rem;

  line-height: 1.9;
}

/* =============================================================
   Footer Enquire
   ============================================================= */

.bw-footer-enquire {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-top: 2rem;

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.65rem;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.bw-footer-enquire:hover {
  color: #ffffff;

  gap: 20px;
}

/* =============================================================
   Footer Columns
   ============================================================= */

.bw-footer-column {
  min-width: 0;
}

.bw-footer-heading {
  display: block;

  margin-bottom: 1.5rem;

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.6rem;

  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}

/* =============================================================
   Footer Links
   ============================================================= */

.bw-footer-links {
  margin: 0;

  padding: 0;

  list-style: none;
}

.bw-footer-links li {
  margin: 0 0 0.85rem;

  padding: 0;

  list-style: none;
}

.bw-footer-links a {
  color: rgba(255, 255, 255, 0.55);

  font-family: "Manrope", sans-serif;

  font-size: 0.72rem;

  line-height: 1.6;

  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.bw-footer-links a:hover {
  padding-left: 5px;

  color: #c8b78e;
}

/* =============================================================
   Footer Contact
   ============================================================= */

.bw-footer-contact {
  display: flex;

  flex-direction: column;

  gap: 0.85rem;
}

.bw-footer-contact a,
.bw-footer-contact span {
  color: rgba(255, 255, 255, 0.55);

  font-family: "Manrope", sans-serif;

  font-size: 0.72rem;

  line-height: 1.6;
}

.bw-footer-contact a {
  transition: color 0.25s ease;
}

.bw-footer-contact a:hover {
  color: #c8b78e;
}

/* =============================================================
   Social Media
   ============================================================= */

.bw-footer-social {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-top: 1.75rem;
}

.bw-footer-social a {
  display: inline-flex;

  width: 34px;
  height: 34px;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.14);

  color: rgba(255, 255, 255, 0.65);

  font-family: "Manrope", sans-serif;

  font-size: 0.55rem;

  font-weight: 700;

  letter-spacing: 0.05em;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.bw-footer-social a:hover {
  border-color: #c8b78e;

  background: #c8b78e;

  color: #080808;
}

/* =============================================================
   Newsletter
   ============================================================= */

.bw-footer-newsletter {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 4rem;

  padding: 3rem 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bw-footer-newsletter-content {
  max-width: 560px;
}

.bw-footer-newsletter-content .bw-footer-heading {
  margin-bottom: 0.75rem;
}

.bw-footer-newsletter-content h3 {
  margin: 0;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(2rem, 4vw, 3.5rem);

  font-weight: 500;

  line-height: 1;
}

.bw-footer-newsletter-content h3 span {
  color: #c8b78e;
}

.bw-footer-newsletter-content p {
  margin: 1rem 0 0;

  max-width: 500px;

  color: rgba(255, 255, 255, 0.45);

  font-family: "Manrope", sans-serif;

  font-size: 0.72rem;

  line-height: 1.8;
}

/* =============================================================
   Newsletter Form
   ============================================================= */

.bw-footer-newsletter-form {
  display: flex;

  width: min(100%, 480px);

  border-bottom: 1px solid rgba(200, 183, 142, 0.5);
}

.bw-footer-newsletter-form input {
  min-width: 0;

  flex: 1;

  height: 52px;

  padding: 0;

  border: 0;

  outline: 0;

  background: transparent;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.72rem;
}

.bw-footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.bw-footer-newsletter-form button {
  display: inline-flex;

  flex-shrink: 0;

  align-items: center;

  gap: 12px;

  height: 52px;

  padding: 0 0 0 20px;

  border: 0;

  background: transparent;

  color: #c8b78e;

  cursor: pointer;

  font-family: "Manrope", sans-serif;

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.bw-footer-newsletter-form button:hover {
  color: #ffffff;
}

/* =============================================================
   Footer Divider
   ============================================================= */

.bw-footer-divider {
  height: 1px;

  width: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 183, 142, 0.45),
    transparent
  );
}

/* =============================================================
   Footer Bottom
   ============================================================= */

.bw-footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 2rem;

  padding: 1.5rem 0;
}

.bw-footer-copyright {
  color: rgba(255, 255, 255, 0.35);

  font-family: "Manrope", sans-serif;

  font-size: 0.6rem;

  line-height: 1.6;
}

.bw-footer-legal {
  display: flex;

  align-items: center;

  gap: 1.5rem;
}

.bw-footer-legal a {
  color: rgba(255, 255, 255, 0.4);

  font-family: "Manrope", sans-serif;

  font-size: 0.6rem;

  transition: color 0.25s ease;
}

.bw-footer-legal a:hover {
  color: #c8b78e;
}

/* =============================================================
   TABLET
   ============================================================= */

@media (max-width: 1100px) {
  .bw-footer-main {
    grid-template-columns:
      1.5fr
      repeat(3, 1fr);

    gap: 3rem;
  }

  .bw-footer-brand {
    grid-column: span 2;
  }

  .bw-footer-newsletter {
    align-items: flex-start;

    flex-direction: column;

    gap: 2rem;
  }

  .bw-footer-newsletter-form {
    width: min(100%, 600px);
  }
}

/* =============================================================
   MOBILE
   ============================================================= */

@media (max-width: 767px) {
  .bw-footer-main {
    display: grid;

    grid-template-columns: 1fr;

    gap: 0;

    padding-top: 4rem;

    padding-bottom: 2rem;
  }

  .bw-footer-brand {
    grid-column: auto;

    max-width: 100%;

    padding-bottom: 3rem;
  }

  .bw-footer-logo img {
    height: 58px;

    max-width: 190px;
  }

  .bw-footer-description {
    max-width: 100%;
  }

  .bw-footer-column {
    padding: 1.5rem 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .bw-footer-heading {
    margin-bottom: 1.2rem;
  }

  .bw-footer-links li {
    margin-bottom: 0.75rem;
  }

  .bw-footer-contact-column {
    padding-bottom: 2rem;
  }

  .bw-footer-newsletter {
    padding: 2.5rem 0;
  }

  .bw-footer-newsletter-content h3 {
    font-size: 2.5rem;

    line-height: 1.05;
  }

  .bw-footer-newsletter-form {
    width: 100%;
  }

  .bw-footer-newsletter-form input {
    width: 100%;
  }

  .bw-footer-newsletter-form button {
    padding-left: 10px;
  }

  .bw-footer-bottom {
    align-items: flex-start;

    flex-direction: column;

    gap: 1rem;

    padding: 1.5rem 0;
  }

  .bw-footer-legal {
    flex-wrap: wrap;

    gap: 0.75rem 1.25rem;
  }
}

/* =============================================================
   SMALL MOBILE
   ============================================================= */

@media (max-width: 420px) {
  .bw-footer-newsletter-content h3 {
    font-size: 2.15rem;
  }

  .bw-footer-newsletter-form {
    display: block;

    border-bottom: 0;
  }

  .bw-footer-newsletter-form input {
    width: 100%;

    border-bottom: 1px solid rgba(200, 183, 142, 0.5);
  }

  .bw-footer-newsletter-form button {
    width: 100%;

    justify-content: space-between;

    padding: 0;

    border-bottom: 1px solid rgba(200, 183, 142, 0.5);
  }
}

/* page about us.php  */
/* =============================================================
   BridgeWater — Inner Page Hero
   ============================================================= */

.bw-inner-hero {
  min-height: 620px;

  display: flex;

  align-items: flex-end;

  padding-block: 8rem 5rem;

  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(200, 183, 142, 0.12),
      transparent 35%
    ),
    #080808;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bw-inner-hero-content {
  max-width: 850px;
}

.bw-inner-hero h1 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(4rem, 8vw, 8rem);

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.bw-inner-hero h1 span {
  color: #c8b78e;
}

.bw-inner-hero p {
  max-width: 560px;

  margin-top: 2rem;

  color: rgba(255, 255, 255, 0.5);

  font-family: "Manrope", sans-serif;

  font-size: 0.9rem;

  line-height: 1.8;
}

/* =============================================================
   About Intro
   ============================================================= */

.bw-about-page-intro {
  padding-block: 8rem;

  background: #ffffff;
}

.bw-about-page-grid {
  display: grid;

  grid-template-columns: 0.7fr 1.3fr;

  gap: 7rem;
}

.bw-about-page-grid h2 {
  margin: 0;

  color: #080808;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(2.8rem, 5vw, 5rem);

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.04em;
}

.bw-about-page-grid h2 span {
  color: #9b875c;
}

.bw-about-page-grid p {
  max-width: 650px;

  margin-top: 2rem;

  color: #555;

  font-family: "Manrope", sans-serif;

  font-size: 0.9rem;

  line-height: 1.9;
}

/* =============================================================
   Values
   ============================================================= */

.bw-about-values {
  padding-block: 8rem;

  background: #080808;
}

.bw-about-values-header {
  margin-bottom: 4rem;
}

.bw-about-values-header h2 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3rem, 5vw, 5rem);

  font-weight: 400;

  line-height: 0.95;
}

.bw-about-values-header h2 span {
  color: #c8b78e;
}

.bw-about-values-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.bw-about-values-grid article {
  min-height: 300px;

  padding: 2rem;

  border-right: 1px solid rgba(255, 255, 255, 0.12);

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bw-about-values-grid article > span {
  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.6rem;
}

.bw-about-values-grid h3 {
  margin-top: 5rem;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.8rem;

  font-weight: 400;
}

.bw-about-values-grid p {
  margin-top: 1rem;

  color: rgba(255, 255, 255, 0.45);

  font-family: "Manrope", sans-serif;

  font-size: 0.72rem;

  line-height: 1.8;
}

/* =============================================================
   About CTA
   ============================================================= */

.bw-about-page-cta {
  padding-block: 6rem;

  background: #c8b78e;
}

.bw-about-page-cta .bw-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 3rem;
}

.bw-about-page-cta .bw-section-eyebrow {
  color: rgba(8, 8, 8, 0.55);
}

.bw-about-page-cta h2 {
  margin: 0;

  color: #080808;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3rem, 5vw, 5.5rem);

  font-weight: 400;

  line-height: 0.95;
}

.bw-about-page-cta h2 span {
  color: #ffffff;
}

.bw-about-page-cta-link {
  display: inline-flex;

  min-height: 60px;

  padding-inline: 2rem;

  align-items: center;

  background: #080808;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.65rem;

  font-weight: 700;

  letter-spacing: 0.13em;

  white-space: nowrap;
}

.bw-about-page-cta-link:hover {
  background: #171717;
}

/* =============================================================
   About Responsive
   ============================================================= */

@media (max-width: 1024px) {
  .bw-about-page-grid {
    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .bw-about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bw-inner-hero {
    min-height: 520px;

    padding-block: 7rem 4rem;
  }

  .bw-inner-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .bw-about-page-intro,
  .bw-about-values {
    padding-block: 4.5rem;
  }

  .bw-about-page-grid {
    gap: 2rem;
  }

  .bw-about-page-grid h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .bw-about-values-grid {
    grid-template-columns: 1fr;
  }

  .bw-about-values-grid article {
    min-height: 240px;
  }

  .bw-about-values-grid h3 {
    margin-top: 3rem;
  }

  .bw-about-page-cta .bw-container {
    align-items: flex-start;

    flex-direction: column;
  }

  .bw-about-page-cta {
    padding-block: 4.5rem;
  }
}

/* contact.php page styling starts from here  */
/* =============================================================
   BridgeWater — Contact
   ============================================================= */

.bw-contact-page {
  padding-block: 11rem 7rem;

  background: #080808;

  min-height: calc(100vh - 100px);
}

.bw-contact-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 7rem;

  align-items: start;
}

.bw-contact-intro h1 {
  margin: 0;

  color: #fff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3.5rem, 6vw, 6rem);

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.bw-contact-intro h1 span {
  color: #c8b78e;
}

.bw-contact-intro > p {
  max-width: 520px;

  margin-top: 2rem;

  color: rgba(255, 255, 255, 0.5);

  font-family: "Manrope", sans-serif;

  font-size: 0.85rem;

  line-height: 1.9;
}

/* =============================================================
   Contact Details
   ============================================================= */

.bw-contact-details {
  display: flex;

  margin-top: 4rem;

  flex-direction: column;

  gap: 2rem;
}

.bw-contact-details > div {
  padding-top: 1rem;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bw-contact-details span {
  display: block;

  margin-bottom: 0.5rem;

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.55rem;

  font-weight: 700;

  letter-spacing: 0.15em;
}

.bw-contact-details a,
.bw-contact-details p {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-family: "Manrope", sans-serif;

  font-size: 0.78rem;
}

.bw-contact-details a:hover {
  color: #c8b78e;
}

/* =============================================================
   Form
   ============================================================= */

.bw-contact-form-wrapper {
  padding: 2.5rem;

  background: #111111;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bw-contact-form {
  margin-top: 2rem;
}

.bw-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 1.25rem;
}

.bw-form-field {
  margin-bottom: 1.5rem;
}

.bw-form-field label {
  display: block;

  margin-bottom: 0.7rem;

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.55rem;

  font-weight: 700;

  letter-spacing: 0.13em;
}

.bw-form-field input,
.bw-form-field select,
.bw-form-field textarea {
  display: block;

  width: 100%;

  padding: 1rem 0;

  border: 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);

  outline: none;

  background: transparent;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 0.78rem;

  border-radius: 0;

  transition: border-color 0.3s ease;
}

.bw-form-field input:focus,
.bw-form-field select:focus,
.bw-form-field textarea:focus {
  border-bottom-color: #c8b78e;
}

.bw-form-field input::placeholder,
.bw-form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.bw-form-field select option {
  background: #111111;

  color: #ffffff;
}

.bw-form-field textarea {
  resize: vertical;

  min-height: 120px;
}

/* =============================================================
   Submit
   ============================================================= */

.bw-contact-submit {
  display: flex;

  width: 100%;

  min-height: 62px;

  padding-inline: 1.5rem;

  align-items: center;

  justify-content: space-between;

  border: 0;

  background: #c8b78e;

  color: #080808;

  font-family: "Manrope", sans-serif;

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.14em;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.bw-contact-submit:hover {
  background: #e0d0a8;

  transform: translateY(-2px);
}

/* =============================================================
   Responsive
   ============================================================= */

@media (max-width: 1024px) {
  .bw-contact-grid {
    grid-template-columns: 1fr;

    gap: 4rem;
  }

  .bw-contact-intro {
    max-width: 750px;
  }
}

@media (max-width: 640px) {
  .bw-contact-page {
    padding-block: 8rem 4.5rem;
  }

  .bw-contact-intro h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .bw-contact-details {
    margin-top: 3rem;
  }

  .bw-contact-form-wrapper {
    padding: 1.5rem;
  }

  .bw-form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }
}

/* blog */
/* =============================================================
   BridgeWater — Blog
   ============================================================= */

.bw-blog-hero {
  padding-block: 12rem 6rem;

  background: #080808;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bw-blog-hero h1 {
  max-width: 900px;

  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3.5rem, 7vw, 7rem);

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.bw-blog-hero h1 span {
  color: #c8b78e;
}

.bw-blog-hero p {
  max-width: 600px;

  margin-top: 2rem;

  color: rgba(255, 255, 255, 0.5);

  font-family: "Manrope", sans-serif;

  font-size: 0.9rem;

  line-height: 1.8;
}

.bw-blog-section {
  padding-block: 7rem;

  background: #0b0b0b;
}

.bw-blog-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2rem;
}

.bw-blog-card {
  background: #111;

  border: 1px solid rgba(255, 255, 255, 0.07);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.bw-blog-card:hover {
  transform: translateY(-5px);

  border-color: rgba(200, 183, 142, 0.3);
}

.bw-blog-image {
  display: block;

  aspect-ratio: 16 / 10;

  overflow: hidden;

  background: #151515;
}

.bw-blog-image img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.bw-blog-card:hover .bw-blog-image img {
  transform: scale(1.05);
}

.bw-blog-placeholder {
  display: flex;

  height: 100%;

  align-items: center;

  justify-content: center;

  color: rgba(200, 183, 142, 0.4);

  font-family: Georgia, "Times New Roman", serif;

  letter-spacing: 0.2em;
}

.bw-blog-content {
  padding: 1.75rem;
}

.bw-blog-date {
  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.55rem;

  letter-spacing: 0.12em;
}

.bw-blog-content h2 {
  margin: 0.8rem 0 0;
}

.bw-blog-content h2 a {
  color: #fff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.7rem;

  font-weight: 400;

  line-height: 1.1;
}

.bw-blog-content h2 a:hover {
  color: #c8b78e;
}

.bw-blog-content p {
  margin-top: 1rem;

  color: rgba(255, 255, 255, 0.45);

  font-family: "Manrope", sans-serif;

  font-size: 0.75rem;

  line-height: 1.8;
}

.bw-blog-link {
  display: inline-block;

  margin-top: 1.5rem;

  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.58rem;

  font-weight: 700;

  letter-spacing: 0.12em;
}

.bw-blog-pagination {
  margin-top: 4rem;
}

.bw-blog-pagination .nav-links {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 1rem;
}

.bw-blog-pagination a,
.bw-blog-pagination span {
  color: #c8b78e;

  font-family: "Manrope", sans-serif;

  font-size: 0.65rem;
}

.bw-blog-empty {
  padding: 6rem 2rem;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bw-blog-empty h2 {
  margin-top: 1rem;

  color: #fff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 3rem;

  font-weight: 400;
}

@media (max-width: 1024px) {
  .bw-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bw-blog-hero {
    padding-block: 9rem 4rem;
  }

  .bw-blog-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .bw-blog-section {
    padding-block: 4.5rem;
  }

  .bw-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   BridgeWater Blog Article
   ============================================================= */

.bw-article-content {
  font-family: "Manrope", sans-serif;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 2;
}

.bw-article-content > * {
  max-width: 100%;
}

.bw-article-content p {
  margin-bottom: 1.5rem;
}

.bw-article-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.15;
}

.bw-article-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.2;
}

.bw-article-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;

  color: #ffffff;

  font-size: 1rem;
  font-weight: 600;
}

.bw-article-content a {
  color: #c8b78e;
  text-decoration: underline;
  text-underline-offset: 4px;

  transition: color 0.3s ease;
}

.bw-article-content a:hover {
  color: #ffffff;
}

.bw-article-content strong {
  color: #ffffff;
  font-weight: 600;
}

.bw-article-content blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;

  border-left: 2px solid #c8b78e;

  background: #111111;

  color: rgba(255, 255, 255, 0.8);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.5;
}

.bw-article-content ul,
.bw-article-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.bw-article-content li {
  margin-bottom: 0.5rem;
}

.bw-article-content ul {
  list-style: disc;
}

.bw-article-content ol {
  list-style: decimal;
}

.bw-article-content img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

.bw-article-content figure {
  margin: 2rem 0;
}

.bw-article-content figcaption {
  margin-top: 0.75rem;

  color: rgba(255, 255, 255, 0.35);

  font-size: 0.7rem;
  line-height: 1.5;
}

.bw-article-content hr {
  margin: 3rem 0;

  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .bw-article-content {
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .bw-article-content h2 {
    font-size: 2rem;
  }

  .bw-article-content h3 {
    font-size: 1.7rem;
  }

  .bw-article-content blockquote {
    padding: 1.25rem 1.25rem;

    font-size: 1.3rem;
  }
}

/* page-locations.php page styling starts from here */
/* =========================================================
   ALL LOCATIONS PAGE
   ========================================================= */

.bw-all-location-card {
  position: relative;
  display: block;

  min-height: 500px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: #0b0b0b;
}

/* =========================================================
   IMAGE
   ========================================================= */

.bw-all-location-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;
}

.bw-all-location-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transform: scale(1);

  transition: transform 0.8s ease;
}

/* =========================================================
   OVERLAY
   ========================================================= */

.bw-all-location-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.55) 50%,
    rgba(8, 8, 8, 0.15) 100%
  );
}

/* =========================================================
   IMAGE HOVER
   ========================================================= */

.bw-all-location-card:hover .bw-all-location-image img {
  transform: scale(1.06);
}

/* =========================================================
   NUMBER
   ========================================================= */

.bw-all-location-number {
  position: absolute;

  top: 32px;
  left: 32px;

  z-index: 3;

  font-family: sans-serif;

  font-size: 0.7rem;

  letter-spacing: 0.2em;

  color: #c8b78e;
}

/* =========================================================
   CONTENT
   ========================================================= */

.bw-all-location-content {
  position: absolute;

  left: 32px;
  right: 32px;
  bottom: 40px;

  z-index: 3;
}

.bw-all-location-country {
  display: block;

  margin-bottom: 12px;

  font-family: sans-serif;

  font-size: 0.6rem;

  font-weight: 600;

  letter-spacing: 0.25em;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.5);
}

.bw-all-location-name {
  margin: 0;

  font-family: var(--font-display);

  font-size: 2.4rem;

  line-height: 1;

  color: white;

  transition: color 0.3s ease;
}

.bw-all-location-card:hover .bw-all-location-name {
  color: #c8b78e;
}

.bw-all-location-count {
  display: block;

  margin-top: 18px;

  font-family: sans-serif;

  font-size: 0.6rem;

  font-weight: 600;

  letter-spacing: 0.2em;

  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   ARROW
   ========================================================= */

.bw-all-location-arrow {
  position: absolute;

  right: 32px;
  bottom: 40px;

  z-index: 3;

  font-size: 1.4rem;

  color: #c8b78e;

  transition: transform 0.3s ease;
}

.bw-all-location-card:hover .bw-all-location-arrow {
  transform: translateX(6px);
}

/* =========================================================
   PLACEHOLDER
   ========================================================= */

.bw-all-location-placeholder {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  font-family: sans-serif;

  font-size: 0.7rem;

  letter-spacing: 0.3em;

  color: rgba(255, 255, 255, 0.3);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .bw-all-location-card {
    min-height: 420px;
  }

  .bw-all-location-number {
    top: 25px;
    left: 25px;
  }

  .bw-all-location-content {
    left: 25px;
    right: 25px;
    bottom: 30px;
  }

  .bw-all-location-name {
    font-size: 2rem;
  }

  .bw-all-location-arrow {
    right: 25px;
    bottom: 30px;
  }
}

/* =============================================================
   BridgeWater — Mobile Menu Fix
   ============================================================= */

@media (max-width: 1023px) {
  /* Full-screen mobile menu */
  #mobile-menu {
    position: fixed !important;
    inset: 0 !important;

    width: 100vw !important;
    height: 100dvh !important;

    z-index: 60 !important;

    background: #080808 !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    -webkit-overflow-scrolling: touch;

    opacity: 0;
    visibility: hidden;

    transform: translateX(100%);

    transition:
      transform 0.45s ease,
      opacity 0.45s ease,
      visibility 0.45s ease;
  }

  /* Open state */
  #mobile-menu.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
  }

  /* Menu content */
  #mobile-menu > div {
    width: min(100% - 2rem, 680px);

    min-height: 100%;

    margin-inline: auto;

    padding-top: 100px;
    padding-bottom: 32px;
  }

  /* Mobile logo area */
  #mobile-menu > div > div:first-child {
    margin-bottom: 24px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  #mobile-menu > div > div:first-child img {
    display: block;

    width: auto;
    height: 50px;

    max-width: 165px;

    object-fit: contain;
    object-position: left center;
  }

  /* Navigation */
  #mobile-menu .bw-mobile-menu {
    margin: 0;
    padding: 0;

    list-style: none;
  }

  #mobile-menu .bw-mobile-menu > li {
    margin: 0;
    padding: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    list-style: none;
  }

  #mobile-menu .bw-mobile-menu > li > a {
    display: flex;

    min-height: 62px;

    align-items: center;
    justify-content: space-between;

    padding: 0;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 0.78rem;
    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
      color 0.25s ease,
      padding-left 0.25s ease;
  }

  #mobile-menu .bw-mobile-menu > li > a:hover {
    color: #c8b78e;
    padding-left: 5px;
  }

  /* Dropdown */
  #mobile-menu .bw-mobile-menu .sub-menu {
    margin: 0;

    padding: 0 0 12px 18px;

    list-style: none;
  }

  #mobile-menu .bw-mobile-menu .sub-menu li {
    margin: 0;
    padding: 0;

    border: 0;
  }

  #mobile-menu .bw-mobile-menu .sub-menu a {
    display: block;

    padding: 9px 0;

    color: rgba(255, 255, 255, 0.55);

    font-family: "Manrope", sans-serif;

    font-size: 0.68rem;

    font-weight: 500;

    letter-spacing: 0.1em;

    text-transform: uppercase;
  }

  #mobile-menu .bw-mobile-menu .sub-menu a:hover {
    color: #c8b78e;
  }

  /* CTA */
  #mobile-menu > div > div:last-child {
    margin-top: 32px !important;

    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  #mobile-menu > div > div:last-child a {
    width: 100%;

    min-height: 52px;
  }
}

/* =============================================================
   Smaller Phones
   ============================================================= */

@media (max-width: 480px) {
  #mobile-menu > div {
    width: calc(100% - 2rem);

    padding-top: 90px;
    padding-bottom: 24px;
  }

  #mobile-menu > div > div:first-child {
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  #mobile-menu > div > div:first-child img {
    height: 44px;
    max-width: 150px;
  }

  #mobile-menu .bw-mobile-menu > li > a {
    min-height: 58px;

    font-size: 0.72rem;
  }
}

/* =============================================================
   BridgeWater — Mobile Menu Accordion
   ============================================================= */

@media (max-width: 1023px) {
  /* Hide all mobile submenus by default */

  #mobile-menu .bw-mobile-menu .sub-menu {
    display: none;

    margin: 0;
    padding: 0 0 12px 18px;

    list-style: none;
  }

  /* Show submenu when parent is opened */

  #mobile-menu .bw-mobile-menu > li.bw-submenu-open > .sub-menu {
    display: block;
  }

  /* Parent menu item */

  #mobile-menu .bw-mobile-menu > li.menu-item-has-children {
    position: relative;
  }

  /* Parent link */

  #mobile-menu .bw-mobile-menu > li.menu-item-has-children > a {
    position: relative;

    padding-right: 35px;
  }

  /* Plus / minus indicator */

  #mobile-menu .bw-mobile-menu > li.menu-item-has-children > a::after {
    content: "+";

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    color: #c8b78e;

    font-family: "Manrope", sans-serif;

    font-size: 1.2rem;

    font-weight: 400;

    line-height: 1;

    transition: transform 0.3s ease;
  }

  /* Minus when open */

  #mobile-menu
    .bw-mobile-menu
    > li.menu-item-has-children.bw-submenu-open
    > a::after {
    content: "−";

    transform: translateY(-50%);
  }

  /* Submenu links */

  #mobile-menu .bw-mobile-menu .sub-menu a {
    display: block;

    padding: 10px 0;

    color: rgba(255, 255, 255, 0.55);

    font-family: "Manrope", sans-serif;

    font-size: 0.7rem;

    font-weight: 500;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition:
      color 0.25s ease,
      padding-left 0.25s ease;
  }

  #mobile-menu .bw-mobile-menu .sub-menu a:hover {
    color: #c8b78e;

    padding-left: 5px;
  }
}

/* =============================================================
   Smaller Phones
   ============================================================= */

@media (max-width: 480px) {
  #mobile-menu .bw-mobile-menu > li > a {
    min-height: 58px;

    font-size: 0.72rem;
  }

  #mobile-menu .bw-mobile-menu .sub-menu a {
    font-size: 0.66rem;
  }
}


/* =========================================================
   CONTACT FORM 7 — BRIDGEWATER
   ========================================================= */

/* Submit button alignment */

.bw-contact-form .bw-contact-submit {
    width: 100%;
    min-height: 64px;
    margin-top: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 28px;

    box-sizing: border-box;
}


/* Make sure CF7 doesn't add unwanted spacing */

.bw-contact-form .wpcf7-form {
    margin: 0;
}

.bw-contact-form .wpcf7-form > p {
    margin: 0;
}


/* Success / error message */

.bw-contact-form .wpcf7-response-output {
    margin: 24px 0 0 !important;
    padding: 14px 18px !important;

    border: 1px solid #c8b78e !important;

    background: transparent !important;

    color: #ffffff !important;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;

    box-sizing: border-box;
}


/* Successful submission */

.bw-contact-form .wpcf7 form.sent .wpcf7-response-output {
    border-color: #c8b78e !important;
    color: #ffffff !important;
}


/* Validation / error message */

.bw-contact-form .wpcf7 form.invalid .wpcf7-response-output,
.bw-contact-form .wpcf7 form.failed .wpcf7-response-output {
    color: #ffffff !important;
}


/* CF7 validation text */

.bw-contact-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #c8b78e !important;
    font-size: 12px;
}


/* Loading spinner */

.bw-contact-form .wpcf7-spinner {
    margin: 10px auto 0;
}
