:root {
  --joint-bg-warm: #fcfaf7;
  --joint-card-surface: #ffffff;
  --joint-teal-accent: #1e7a6e;
  --joint-teal-hover: #165b52;
  --joint-ochre-accent: #d48c46;
  --joint-ochre-hover: #b87432;
  --joint-glass-bg: rgba(255, 255, 255, 0.85);
  --joint-text-slate: #1d2423;
  --joint-text-light: #5a6663;
  --joint-border-color: rgba(30, 122, 110, 0.15);
  --joint-gradient: linear-gradient(135deg, #1e7a6e 0%, #2a9d8f 100%);
  --joint-font-display: 'Montserrat', sans-serif;
  --joint-font-body: 'Open Sans', sans-serif;
  --joint-border-radius: 20px;
  --joint-shadow: 0 8px 30px rgba(29, 36, 35, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--joint-font-body);
  background-color: var(--joint-bg-warm);
  color: var(--joint-text-slate);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .joint-logo-text {
  font-family: var(--joint-font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--joint-text-slate);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Scroll Progress Bar */
@keyframes progress-grow {
  to { width: 100%; }
}

.joint-scroll-tracker {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--joint-ochre-accent);
  z-index: 10001;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

/* Scroll Reveal animation */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.joint-reveal-block {
  animation: slide-up 1s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

/* Header & Nav */
.joint-page-header {
  position: sticky;
  top: 0;
  background-color: var(--joint-glass-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--joint-border-color);
  z-index: 10000;
}

.joint-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.joint-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.joint-logo-icon {
  width: 32px;
  height: 32px;
  fill: var(--joint-teal-accent);
}

.joint-logo-text {
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.joint-nav-input {
  display: none;
}

.joint-hamburger-button {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.joint-hamburger-bar {
  width: 25px;
  height: 3px;
  background-color: var(--joint-text-slate);
  transition: 0.3s;
}

.joint-nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.joint-menu-link {
  font-family: var(--joint-font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--joint-text-slate);
}

.joint-menu-link:hover {
  color: var(--joint-teal-accent);
}

.joint-menu-btn {
  background-color: var(--joint-teal-accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--joint-border-radius);
  font-family: var(--joint-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.joint-menu-btn:hover {
  background-color: var(--joint-teal-hover);
  color: #fff;
}

/* Footer Section */
.joint-footer-zone {
  background-color: var(--joint-text-slate);
  color: #fff;
  padding: 16dvh 2rem 4rem;
}

.joint-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4rem;
  margin-bottom: 2rem;
}

.joint-footer-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.joint-footer-aside .joint-logo-icon {
  fill: var(--joint-ochre-accent);
}

.joint-footer-aside p {
  color: rgba(255, 255, 255, 0.7);
}

.joint-footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.joint-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.joint-footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.joint-footer-links a:hover {
  color: var(--joint-ochre-accent);
}

.joint-footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.joint-footer-copy {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Hero Index styling */
.joint-home-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(29, 36, 35, 0.5), rgba(29, 36, 35, 0.75)), url('img/bg.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 0 2rem;
}

.joint-hero-display-box {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.joint-hero-display-box h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}

.joint-hero-display-box p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.joint-hero-cta-btn {
  display: inline-block;
  background-color: var(--joint-ochre-accent);
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 999px;
  font-family: var(--joint-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(212, 140, 70, 0.3);
  transition: all 0.3s ease;
}

.joint-hero-cta-btn:hover {
  background-color: var(--joint-ochre-hover);
  transform: translateY(-2px);
}

/* Bento grid definition */
.joint-bento-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16dvh 2rem;
}

.joint-section-heading {
  text-align: center;
  margin-bottom: 5rem;
}

.joint-section-heading p {
  color: var(--joint-teal-accent);
  font-family: var(--joint-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.joint-section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.joint-bento-layout {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.joint-bento-brick {
  background-color: var(--joint-card-surface);
  padding: 2.5rem;
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-shadow);
  border: 1px solid var(--joint-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.joint-bento-brick:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(29, 36, 35, 0.12);
}

.joint-brick-span4 {
  grid-column: span 4;
  background: var(--joint-gradient);
  color: #fff;
  border: none;
}

.joint-brick-span4 h3 {
  color: #fff;
}

.joint-brick-span2 {
  grid-column: span 2;
  align-items: center;
  text-align: center;
}

.joint-brick-span3 {
  grid-column: span 3;
}

.joint-brick-span6 {
  grid-column: span 6;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.joint-bento-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(30, 122, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.joint-brick-span4 .joint-bento-icon-wrap {
  background-color: rgba(255, 255, 255, 0.2);
}

.joint-bento-icon {
  width: 28px;
  height: 28px;
  fill: var(--joint-teal-accent);
}

.joint-brick-span4 .joint-bento-icon {
  fill: #fff;
}

.joint-bento-brick h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.joint-bento-brick p {
  color: var(--joint-text-light);
}

.joint-brick-span4 p {
  color: rgba(255, 255, 255, 0.9);
}

.joint-stat-big {
  font-family: var(--joint-font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--joint-ochre-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Image overlay banner section */
.joint-image-banner-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(29, 36, 35, 0.4), rgba(29, 36, 35, 0.6)), url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 0 2rem;
}

.joint-image-banner-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.joint-image-banner-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.joint-image-banner-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Steps - How it works section */
.joint-steps-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16dvh 2rem;
}

.joint-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.joint-step-box {
  position: relative;
  background-color: var(--joint-card-surface);
  padding: 3rem 2rem;
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-shadow);
  border-top: 5px solid var(--joint-teal-accent);
  overflow: hidden;
}

.joint-step-bg-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: var(--joint-font-display);
  font-size: 8rem;
  font-weight: 900;
  color: var(--joint-teal-accent);
  opacity: 0.07;
  line-height: 1;
}

.joint-step-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.joint-step-box p {
  color: var(--joint-text-light);
}

/* CTA strip section */
.joint-cta-strip-block {
  background: var(--joint-gradient);
  color: #fff;
  padding: 8dvh 2rem;
  text-align: center;
}

.joint-cta-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.joint-cta-strip-inner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0;
}

.joint-strip-btn {
  display: inline-block;
  background-color: #fff;
  color: var(--joint-teal-accent);
  padding: 1.2rem 2.5rem;
  border-radius: 999px;
  font-family: var(--joint-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.joint-strip-btn:hover {
  transform: translateY(-2px);
  background-color: var(--joint-bg-warm);
}

/* Expert Page Custom Layout */
.joint-expert-hero {
  background-color: var(--joint-text-slate);
  color: #fff;
  padding: 12dvh 2rem;
  text-align: center;
}

.joint-expert-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.joint-expert-portfolio {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16dvh 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.joint-expert-aside-graphics {
  flex: 1;
  border-radius: var(--joint-border-radius);
  overflow: hidden;
  box-shadow: var(--joint-shadow);
}

.joint-expert-aside-graphics img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.joint-expert-bio-block {
  flex: 1;
}

.joint-expert-bio-block h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.joint-expert-bio-block h3 {
  color: var(--joint-ochre-accent);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.joint-expert-bio-block p {
  color: var(--joint-text-light);
  margin-bottom: 1.5rem;
}

.joint-bento-mini {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 16dvh;
}

.joint-bento-grid-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Reserve Page styling */
.joint-reserve-section-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16dvh 2rem;
  gap: 4rem;
}

.joint-info-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.joint-info-brick {
  background-color: var(--joint-card-surface);
  padding: 2.5rem;
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-shadow);
  border: 1px solid var(--joint-border-color);
}

.joint-info-brick h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.joint-bullet-ordered-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.joint-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.joint-bullet-marker {
  width: 24px;
  height: 24px;
  border-radius: 55%;
  background-color: var(--joint-teal-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.joint-bullet-text {
  color: var(--joint-text-light);
  font-size: 0.95rem;
}

/* Mailto link */
.joint-company-email-link {
  color: var(--joint-teal-accent);
  font-weight: 700;
  font-family: var(--joint-font-display);
}

.joint-company-email-link:hover {
  text-decoration: underline;
}

/* Reservation Form Card */
.joint-form-box {
  background-color: var(--joint-card-surface);
  padding: 3rem;
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-shadow);
  border: 1px solid var(--joint-border-color);
  align-self: flex-start;
}

.joint-form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.joint-input-group {
  margin-bottom: 1.5rem;
}

.joint-input-group label {
  display: block;
  font-family: var(--joint-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.joint-input-input {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(29, 36, 35, 0.15);
  font-family: var(--joint-font-body);
  font-size: 1rem;
  background-color: var(--joint-bg-warm);
}

.joint-input-input:focus {
  outline: none;
  border-color: var(--joint-teal-accent);
}

.joint-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.joint-checkbox-group input {
  margin-top: 0.25rem;
}

.joint-checkbox-group label {
  font-size: 0.85rem;
  color: var(--joint-text-light);
}

.joint-checkbox-group a {
  color: var(--joint-teal-accent);
  text-decoration: underline;
}

.joint-submit-btn {
  width: 100%;
  background-color: var(--joint-teal-accent);
  color: #fff;
  font-family: var(--joint-font-display);
  font-weight: 700;
  padding: 1.1rem;
  border: none;
  border-radius: 10px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}

.joint-submit-btn:hover {
  background-color: var(--joint-teal-hover);
}

/* FAQ CSS Accordion */
.joint-accordion-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 16dvh;
}

.joint-faq-item {
  background-color: var(--joint-card-surface);
  border-radius: var(--joint-border-radius);
  margin-bottom: 1rem;
  border: 1px solid var(--joint-border-color);
  overflow: hidden;
}

.joint-faq-input-trigger {
  display: none;
}

.joint-faq-label {
  display: block;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-family: var(--joint-font-display);
  font-weight: 700;
  color: var(--joint-text-slate);
  cursor: pointer;
}

.joint-faq-body {
  padding: 0 2rem 1.5rem;
  color: var(--joint-text-light);
}

/* Static Policy styles */
.joint-static-page-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 16dvh 2rem;
}

.joint-static-page-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.joint-static-page-section h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.joint-static-page-section p {
  color: var(--joint-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Thank You layout */
.joint-thank-hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(29, 36, 35, 0.6), rgba(29, 36, 35, 0.8)), url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 4rem 2rem;
}

.joint-thank-display-card {
  max-width: 600px;
  background-color: var(--joint-glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4rem 3rem;
  border-radius: var(--joint-border-radius);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.joint-thank-display-card h1 {
  font-size: 2.5rem;
  color: var(--joint-text-slate);
  margin-bottom: 1.5rem;
}

.joint-thank-display-card p {
  color: var(--joint-text-light);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* Cookie Banner Styling */
.joint-cookie-banner-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--joint-text-slate);
  color: #fff;
  padding: 1.5rem 2rem;
  z-index: 99999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
  display: none;
}

.joint-cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.joint-cookie-banner-inner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.joint-cookie-banner-inner a {
  color: var(--joint-ochre-accent);
  text-decoration: underline;
}

.joint-cookie-action-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.joint-cookie-action-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-family: var(--joint-font-display);
  font-weight: 700;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.joint-cookie-btn-decline {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.joint-cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.joint-cookie-btn-accept {
  background-color: var(--joint-ochre-accent);
  color: #fff;
}

.joint-cookie-btn-accept:hover {
  background-color: var(--joint-ochre-hover);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .joint-nav-container {
    padding: 1rem 1.5rem;
  }
  
  .joint-hamburger-button {
    display: flex;
  }
  
  .joint-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--joint-card-surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--joint-border-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: none;
  }
  
  .joint-nav-input:checked ~ .joint-nav-menu {
    display: flex;
  }
  
  .joint-nav-input:checked ~ .joint-hamburger-button .joint-hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .joint-nav-input:checked ~ .joint-hamburger-button .joint-hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  
  .joint-nav-input:checked ~ .joint-hamburger-button .joint-hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .joint-footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .joint-bento-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .joint-bento-brick {
    grid-column: span 1 !important;
  }

  .joint-brick-span6 {
    flex-direction: column;
    align-items: flex-start;
  }

  .joint-steps-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .joint-expert-portfolio {
    flex-direction: column;
    gap: 3rem;
  }

  .joint-bento-grid-mini {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .joint-reserve-section-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 575px) {
  .joint-cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .joint-cookie-action-buttons {
    justify-content: center;
  }
}