:root {
  /*--lb-bg: #1a1a1a;
  --lb-surface: #2d2d2d;*/
  --lb-bg: #121212;
  --lb-surface: #1f1f1f;
  --lb-surface-soft: #242424;
  --lb-border: #4a4a4a;
  --lb-text: #f7f7f7;
  --lb-muted: #b4b4b4;
  --lb-ember: #e85d3a;
  --lb-ember-hover: #dc4e2b;
  --lb-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lb-display: "Oswald", "Inter", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--lb-bg);
  color: var(--lb-text);
  font-family: var(--lb-font);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--lb-display);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.08;
  margin: 0;
}

.text-ember {
  color: var(--lb-ember) !important;
}

.muted-custom p, .text-muted-custom, .models-desc p, .cabins-desc p {
  color: var(--lb-muted);
  margin-top: 24px;
}

.py-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-section-lg {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-border-bottom {
  border-bottom: 1px solid var(--lb-border);
}

.section-border-y {
  border-top: 1px solid var(--lb-border);
  border-bottom: 1px solid var(--lb-border);
}

.site-header {
  background: rgba(26, 26, 26, 0.88);
  border-bottom: 1px solid var(--lb-border);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 7rem;
  padding: 0;
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--lb-text);
  font-family: var(--lb-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.navbar-brand:hover {
  color: #fff;
}
.brand-logo {
  width: auto;
  height: 5rem;
  object-fit: contain;
}

.navbar-nav {
  gap: 1.5rem;
}

.nav-link {
  color: var(--lb-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0 !important;
}

.nav-link:hover {
  color: var(--lb-text);
}
.nav-link.active {
  color: #fff!important;
  font-weight: 700;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lb-muted);
  font-size: 13.5px;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--lb-text);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
  padding-right: 0;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.btn {
  border-radius: 0.125rem;
  font-weight: 700;
  transition: 0.18s ease;
  font-size: 14px;
}

.btn-ember {
  background: var(--lb-ember);
  border-color: var(--lb-ember);
  color: #fff;
}

.btn-ember:hover,
.btn-ember:focus {
  background: var(--lb-ember-hover);
  border-color: var(--lb-ember-hover);
  color: #fff;
}

.btn-outline-light-custom {
  border: 1px solid var(--lb-border);
  color: var(--lb-text);
  background: transparent;
}

.btn-outline-light-custom:hover,
.btn-outline-light-custom:focus {
  border-color: var(--lb-ember);
  color: var(--lb-text);
}

.btn-lg-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--lb-bg) 0%, rgba(26, 26, 26, 0.82) 47%, rgba(26, 26, 26, 0.3) 100%);
}

.py-hero {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.eyebrow-box {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--lb-border);
  background: rgba(45, 45, 45, 0.55);
  padding: 0.35rem 0.75rem;
  color: var(--lb-muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-box span {
  width: 0.38rem;
  height: 0.38rem;
  background: var(--lb-ember);
}

.hero-title, .py-hero h1 {
  font-size: clamp(3.3rem, 5.2vw, 4.8rem);
  line-height: 1.05;
  margin: 0;
}
.hero-title .text-ember {
    color: var(--ember);
}
.hero-title {
  line-height: 1.05;
}
.hero-title br + br {
  display: none;
}
.hero-text {
  margin-top: 24px;
}
.hero-lead, .py-hero p {
  max-width: 39rem;
  color: var(--lb-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.section-label, .models-desc p.section-label, .cabins-desc p.section-label {
  margin-bottom: 0.85rem;
  color: var(--lb-ember);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-text {
  color: var(--lb-muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--lb-muted);
  font-size: 0.95rem;
}

.text-link:hover {
  color: var(--lb-ember);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--lb-border);
  background: var(--lb-bg);
}

.service-card {
  display: block;
  min-height: 100%;
  background: var(--lb-bg);
  padding: 2rem;
  transition: background 0.18s ease;
}

.service-card:hover {
  background: var(--lb-surface-soft);
}

.service-icon {
  display: inline-block;
  color: var(--lb-ember);
  font-size: 2rem;
  line-height: 1;
}

.service-card h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.45rem;
}

.service-card:hover h3 {
  color: var(--lb-ember);
}

.service-card p {
  margin: 0;
  color: var(--lb-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.45rem;
  color: var(--lb-ember);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-section {
  background: var(--lb-surface);
}
.why-section  h2 {
  font-size: 52px;
}
@media (max-width: 767.98px) {
  .why-section  h2 {
    font-size: 42px;
  }
}
.feature-item {
  border-left: 2px solid var(--lb-ember);
  padding-left: 1rem;
}

.feature-item i {
  color: var(--lb-ember);
  font-size: 1.35rem;
}

.feature-item h3 {
  margin: 0.7rem 0 0.3rem;
  font-family: var(--lb-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.feature-item p {
  margin: 0;
  color: var(--lb-muted);
  font-size: 0.9rem;
}

.image-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0) 100%);
}

.image-panel-caption h3 {
  margin: 0;
  font-size: 1.6rem;
}

.image-panel-caption p {
  margin: 0.25rem 0 0;
  color: var(--lb-muted);
  font-size: 0.95rem;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lb-border);
  padding: 4rem;
}

.cta-box > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.18);
}

.cta-box .row {
  z-index: 1;
}
.cta-box  h2 {
  font-size: 52px;
}
@media (max-width: 767.98px) {
  .cta-box  h2 {
    font-size: 42px;
  }
}
.cta-box p {
  margin: 1rem 0 0;
  color: var(--lb-muted);
}

.cta-secondary {
  background: rgba(26, 26, 26, 0.62);
}

.site-footer {
  margin-top: 6rem;
  background: var(--lb-surface);
  border-top: 1px solid var(--lb-border);
}

.footer-brand img {
  width: auto;
  height: 3rem;
}

.footer-text, .footer-desc p {
  max-width: 27rem;
  color: var(--lb-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.site-footer h4 {
  color: var(--lb-muted);
  font-family: var(--lb-font);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 0.6rem;
  font-size: 13.5px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--lb-ember);
}
.footer-links a:hover, .footer-bottom a:hover,
.footer-contact a:hover,
.footer-links a.active {
  color: var(--lb-ember);
}
.footer-contact {
  color: var(--lb-muted);
}

.footer-bottom {
  border-top: 1px solid var(--lb-border);
  padding: 1.5rem 0;
  color: var(--lb-muted);
  font-size: 0.78rem;
}
.footer-bottom p {
  display: block;
  text-align: left;
  margin-top: 10px;
}
@media (max-width: 1199.98px) {
  .brand-logo {
    height: 4.3rem;
  }

  .navbar-nav {
    gap: 1rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 5.5rem;
    padding: 0.5rem 0;
  }

  .brand-logo {
    height: 3.9rem;
  }

  .navbar-collapse {
    padding: 1rem 0 1.25rem;
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    padding: 0.75rem 0 !important;
  }

  .header-actions {
    padding-top: 0.5rem;
  }

  .py-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .py-section,
  .py-section-lg {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 2.6rem;
  }

  .hero-bg::after {
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
  }

  .hero-title, .py-hero h1 {
    font-size: 3.4rem;
    margin-top:15px;
  }

  .hero-lead, .intro-text, .py-hero p {
    font-size: 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 2.25rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand span,
  .footer-brand span {
    font-size: 1rem;
  }

  .brand-logo {
    height: 3.25rem;
  }

  .py-hero {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-title, .py-hero h1 {
    font-size: 2.85rem;
  }

  .eyebrow-box {
    font-size: 0.65rem;
  }

  .btn-lg-custom {
    width: 100%;
    justify-content: center;
  }

  .service-card {
    padding: 1.6rem;
  }

  .cta-box {
    padding: 1.6rem;
  }
}
.intro-section h2 {
  font-size: 52px;
}
@media (max-width: 767.98px) {
  .intro-section h2 {
    font-size: 42px;
  }
}
.services-preview h2 {
  font-size: 52px;
}
@media (max-width: 767.98px) {
  .services-preview h2 {
    font-size: 42px;
  }
}
/* Inner pages */
.py-page-hero {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.page-hero h1 {
  max-width: 58rem;
  margin: 1rem 0 0;
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.page-hero p:not(.section-label) {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  color: var(--lb-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.page-hero-narrow {
  max-width: 64rem;
}

.service-pillars .container-xl {
  display: grid;
  gap: 5rem;
}

.service-pillar {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 3.5rem;
  align-items: flex-start;
}
.service-pillars .service-pillar:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 220px;
}

.service-pillars .service-pillar:nth-child(even) .pillar-number {
  order: 2;
}
/*.service-pillar.reverse {
  grid-template-columns: minmax(0, 1fr) 220px;
}

.service-pillar.reverse .pillar-number {
  order: 2;
}*/

.service-pillar h2 {
  font-size: clamp(2.3rem, 2.8vw, 2.6rem);
}

.service-pillar p {
  margin-top: 1.2rem;
  color: var(--lb-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.pillar-number span {
  display: block;
  color: var(--lb-ember);
  font-family: var(--lb-display);
  font-size: 3.2rem;
  line-height: 1;
}

.pillar-number i {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--lb-ember);
  font-size: 2.1rem;
}
.service-pillars {
    counter-reset: pillar;
}

.service-pillar {
    counter-increment: pillar;
}

.pillar-number span::before {
    content: counter(pillar, decimal-leading-zero);
}
.check-list, .service-pillar ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li, .service-pillar ul li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.check-list li::before, .service-pillar ul li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--lb-ember);
  font-family: "bootstrap-icons";
}

.models-section,
.values-section {
  background: var(--lb-surface);
}

.model-card{
  height: 100%;
  background: var(--lb-bg);
  border: 1px solid var(--lb-border);
  overflow: hidden;
}
.cabin-card {
  height: 100%;
  background: var(--lb-bg);
  overflow: hidden;
}
.model-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.model-card > div,
.cabin-card {
  padding: 1.5rem;
}
.cabin-card h3, .cabin-card p {
  padding-left: 25px;
  padding-right: 25px;

}
.model-card span {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--lb-ember);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.model-card h3,
.cabin-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.model-card p,
.cabin-card p {
  margin: 0.75rem 0 0;
  color: var(--lb-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cabin-card img {
  width: calc(100% + 3rem);
  max-width: none;
  margin: -1.5rem -1.5rem 1.4rem;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.ratio-img {
  overflow: hidden;
}

.ratio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}
.about-main h2 {
  font-size: 36px;
}
.about-main p {
  font-size: 1.02rem;
  line-height: 1.75;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--lb-border);
}

.value-card {
  background: var(--lb-surface);
  padding: 2rem;
}

.value-card h3 {
  margin: 0;
  color: var(--lb-ember);
  font-size: 1.2rem;
}

.value-card p {
  margin: 0.9rem 0 0;
  color: var(--lb-muted);
  line-height: 1.65;
}
.short-services h2 {
  font-size: 36px;
}
.short-service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  background: var(--lb-surface);
  border: 1px solid var(--lb-border);
  padding: 1.5rem;
  text-align: center;
  font-family: var(--lb-display);
  font-size: 1.05rem;
}
.short-service-card:hover {
  border-color: var(--lb-ember);
  color: var(--lb-ember);
}
.people-section h2, .contact-form h2 {
  font-size: 42px;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  /*background: var(--lb-border);*/
  background: #121212;
}
.person-card {
  background: var(--lb-surface);
  padding: 1.5rem;
  border-right: 1px solid var(--lb-border);
}
.person-head {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.person-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  border: 1px solid var(--lb-border);
  background: var(--lb-bg);
  color: var(--lb-ember);
}
.person-head h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}
.person-head p {
  margin: 0.25rem 0 0;
  color: var(--lb-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/*.person-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
  color: var(--lb-muted);
  font-size: 0.9rem;
}

.person-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  word-break: break-word;
}

.person-links a:hover {
  color: var(--lb-ember);
}*/
.person-links {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.4rem;
    color: var(--lb-muted);
    font-size: 0.9rem;
}
.person-links > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}
.person-links > div > i {
    flex: 0 0 auto;
    width: 1rem;
    color: var(--lb-muted);
    line-height: 1;
}
.person-links > div > span {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}
.person-links > div > span p {
    margin: 0;
}
.person-links > div a {
    color: inherit;
    text-decoration: none;
    word-break: break-word;
}
.person-links > div a:hover {
    color: var(--lb-ember);
}
.contact-form label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--lb-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--lb-border);
  border-radius: 0.125rem;
  background: var(--lb-surface-soft);
  color: var(--lb-text);
  padding: 0.9rem 1rem;
  font: inherit;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lb-ember);
}

.contact-form textarea {
  resize: vertical;
}

.contact-info {
  display: grid;
  gap: 1px;
  background: var(--lb-border);
}

.info-row {
  display: block;
  background: var(--lb-surface);
  padding: 1.5rem;
}

.info-row span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--lb-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-row span i {
  color: var(--lb-ember);
}

.info-row strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.98rem;
  font-weight: 500;
}

a.info-row:hover strong {
  color: var(--lb-ember);
}

@media (max-width: 991.98px) {
  .py-page-hero {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .service-pillars .service-pillar,
  .service-pillars .service-pillar:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-pillars .service-pillar .pillar-number,
  .service-pillars .service-pillar:nth-child(even) .pillar-number {
    order: 0;
  }

  .people-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .page-hero h1 {
    font-size: 3rem;
  }

  .page-hero p:not(.section-label) {
    font-size: 1rem;
  }

  .pillar-number span {
    font-size: 3.6rem;
  }
}

.cta-section .cta-box h2 {
  font-size: 36px;
}

/* v1.2 fixes: desktop/mobile navigation and service model grid */
.desktop-nav .navbar-nav {
  margin-bottom: 0;
}

.mobile-menu {
  width: 100% !important;
  height: 100dvh;
  background: rgba(18, 18, 18, 0.98);
  color: var(--lb-text);
}

.mobile-menu .offcanvas-header {
  min-height: 5.5rem;
  padding: 1rem var(--bs-gutter-x, 1.5rem);
  border-bottom: 1px solid var(--lb-border);
}

.mobile-menu .offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem var(--bs-gutter-x, 1.5rem);
}

.mobile-nav {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav .nav-link {
  display: block;
  padding: 0.55rem 0 !important;
  color: var(--lb-text);
  font-family: var(--lb-display);
  font-size: clamp(2.4rem, 12vw, 4.6rem);
  line-height: 1.05;
}

.mobile-nav .nav-link:hover {
  color: var(--lb-ember);
}
.mobile-nav .nav-link.active {
  color: var(--lb-ember)!important;
}
.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 2.5rem;
  max-width: 24rem;
}

.models-grid {
  border-top: 1px solid var(--lb-border);
  border-left: 1px solid var(--lb-border);
}

.models-grid > [class*="col-"] {
  border-right: 1px solid var(--lb-border);
  border-bottom: 1px solid var(--lb-border);
}

.model-card {
  display: grid;
  grid-template-columns: minmax(10rem, 14rem) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
  height: 100%;
  min-height: 24rem;
  padding: 2rem;
  background: transparent;
  border: 0;
  overflow: visible;
}

.model-image {
  background: #fff;
  overflow: hidden;
}

.model-card img {
  display: block;
  width: 100%;
  height: 21.5rem;
  aspect-ratio: auto;
  object-fit: contain;
}

.model-card > div,
.cabin-card {
  padding: 0;
}

.model-content {
  padding-top: 0.1rem;
}
.model-content h3 {
  font-size: 20px;
}
@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    display: none !important;
  }

  .model-card {
    grid-template-columns: minmax(8rem, 11rem) minmax(0, 1fr);
    min-height: 0;
    padding: 1.5rem;
  }

  .model-card img {
    height: 17rem;
  }
}

@media (max-width: 575.98px) {
  .model-card {
    grid-template-columns: 1fr;
  }

  .model-image {
    max-width: 14rem;
  }

  .model-card img {
    height: 19rem;
  }
}

.cabins-section h2 {
  font-size: 42px;
}
/* v1.3 mobile menu fix */
.mobile-menu.offcanvas {
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  width: 100% !important;
  max-width: none;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 1060;
  transform: translateX(-100%);
  background: rgba(18, 18, 18, 0.99);
  border-right: 0;
}

.mobile-menu.offcanvas.show,
.mobile-menu.offcanvas.showing {
  transform: none;
  visibility: visible;
}

.offcanvas-backdrop {
  z-index: 1050;
}

.mobile-menu .navbar-brand,
.mobile-menu .mobile-nav,
.mobile-menu .mobile-menu-actions {
  position: relative;
  z-index: 1;
}


/* v1.4 mobile menu polish */
.mobile-menu.offcanvas {
  /*width: 100vw !important;
  height: 100vh;
  height: 100dvh;*/
  width: 100% !important;
  height: 100vh;
  height: 100dvh;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 103, 64, 0.16), transparent 32rem),
    rgba(18, 18, 18, 0.99);
  transition: transform 0.32s ease, visibility 0.32s ease;
}

.mobile-menu .offcanvas-header {
  min-height: 6rem;
  padding-left: clamp(1.25rem, 6vw, 3rem);
  padding-right: clamp(1.25rem, 6vw, 3rem);
}

/*.mobile-menu .offcanvas-body {
  min-height: calc(100dvh - 6rem);
  padding: clamp(2rem, 7vw, 4rem) clamp(1.25rem, 6vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}*/
.mobile-menu .offcanvas-body {
  min-height: auto;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1.25rem, 6vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  overflow-y: auto;
}
.mobile-nav {
  align-content: center;
  gap: 0.15rem;
}

.mobile-nav .nav-link {
  width: fit-content;
  padding: 0.35rem 0 !important;
  font-size: clamp(2.8rem, 12vw, 5rem);
  letter-spacing: -0.035em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  transform: translateX(0.35rem);
}

.mobile-menu-actions {
  width: 100%;
  max-width: 31rem;
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lb-border);
}

.mobile-menu-actions .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 576px) {
  .mobile-menu-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  .mobile-nav .nav-link {
    font-size: 2.45rem;
  }
}
/* Captcha */
.captcha {
	font-size:14px;
	padding-top:0px;
	padding-bottom:20px;
	margin-bottom:0em!important;
	width:100%;
}
.captcha-input {
	font-size:14px;
	padding:0em;
	padding-bottom:40px!important;
}
.captcha-input input{
	float:left;
	clear:right;
	margin-right:10px;
  padding: 2px;
  text-align: center;
  font-size: 14px;
}
.captcha-input img{
	float:left;
	clear:right;
	margin-right:10px;
	margin-top:0em;
}
/* Form */
#contact-form-main input.input-error,
#contact-form-main textarea.input-error,
#contact-form-main select.input-error {
    border: 2px solid #d9534f !important;
    border-bottom: 2px solid #d9534f !important;
    box-shadow: none !important;
    outline: none !important;
}
#contact-form-main input.input-error:valid,
#contact-form-main input.input-error:invalid,
#contact-form-main textarea.input-error:valid,
#contact-form-main textarea.input-error:invalid,
#contact-form-main select.input-error:valid,
#contact-form-main select.input-error:invalid {
    border: 2px solid #d9534f !important;
    border-bottom: 2px solid #d9534f !important;
    box-shadow: none !important;
    outline: none !important;
}
#contact-form-main .captcha-input input.input-error {
    border: 2px solid #d9534f !important;
    border-bottom: 2px solid #d9534f !important;
    box-shadow: none !important;
    outline: none !important;
}
#form-error-box ul {
    margin-left: 20px;
    margin-right: 20px;
}
#form-success-box {
    padding: 42px 34px;
    margin: 0;
    border: 3px solid #d65a31;
    background: #f8f5f2;
    color: #171717;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}
#form-success-box .success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 22px auto;
    border-radius: 50%;
    background: #d65a31;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}
#form-success-box h2 {
    margin: 0 0 14px 0;
    font-size: 32px;
    line-height: 1.2;
    color: #171717;
}
#form-success-box p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #171717;
}
#form-success-box .success-note {
    margin-top: 20px;
    font-size: 15px;
    color: #4f4a45;
}
.back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1040;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 50%;
    background: var(--lb-ember);
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.75rem);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.2s ease;
    cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--lb-dark);
}
.back-to-top i {
    font-size: 1.15rem;
    line-height: 1;
}
.back-to-top span {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 700;
}
