/* --- DESIGN PRESET A: PROFESSIONAL DARK HEADERS & LIGHT CONTENT --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Raleway:wght@400;700;800;900&display=swap');

:root {
  --sight-bg: #faf9f6; /* Cream/light background */
  --sight-surface: #ffffff;
  --sight-dark-surface: #0b0f19; /* Deep dark header/footer */
  --sight-tone: #0ea5e9; /* Sky blue/cyan accent */
  --sight-tone-hover: #0284c7;
  --sight-tone-glass: rgba(14, 165, 233, 0.15);
  --sight-ink: #1a1a2a; /* Dark text */
  --sight-ink-light: #f8fafc; /* Light text */
  --sight-muted: #64748b;
  --sight-border: #e2e8f0;
  --sight-radius: 16px; /* Soft border-radius styling */
  --sight-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --sight-shadow-elevated: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --sight-gradient: linear-gradient(135deg, #0ea5e9 0%, #0d9488 100%);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--sight-bg);
  color: var(--sight-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll Progress Bar */
.scroll-progress-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--sight-gradient);
  width: 0;
  z-index: 10000;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

@keyframes progress-grow {
  to { width: 100%; }
}

/* Scroll-driven animations for sections */
.sight-reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

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

/* Header styling (Professional Dark) */
.sight-crown {
  position: sticky;
  top: 0;
  background-color: var(--sight-dark-surface);
  color: var(--sight-ink-light);
  padding: 1.2rem 2rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sight-crown-envelope {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sight-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--sight-ink-light);
}

.sight-brand svg {
  fill: var(--sight-tone);
  width: 32px;
  height: 32px;
}

.sight-guide {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sight-guide a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.sight-guide a:hover,
.sight-guide a.active {
  color: var(--sight-tone);
  border-bottom-color: var(--sight-tone);
}

/* Mobile Hamburger CSS Only */
.sight-hamburger-check {
  display: none;
}

.sight-hamburger-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
}

.sight-hamburger-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--sight-ink-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section (Fullscreen 100vh) */
.sight-portal {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--sight-ink-light);
  text-align: center;
}

.sight-portal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 15, 25, 0.65);
  z-index: 1;
}

.sight-portal-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.sight-portal-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: var(--sight-ink-light);
}

.sight-portal-content p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  color: rgba(248, 250, 252, 0.9);
  font-weight: 300;
}

/* Button style - Pill shape */
.sight-action-pill {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: var(--sight-gradient);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sight-action-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
  color: white;
}

/* Floating Stat Bar Overlay */
.sight-stat-bar {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  padding: 0 1.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.sight-stat-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.sight-stat-node {
  background: var(--sight-surface);
  padding: 2rem;
  border-radius: var(--sight-radius);
  box-shadow: var(--sight-shadow-elevated);
  text-align: center;
  border: 1px solid var(--sight-border);
}

.sight-stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--sight-tone);
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.sight-stat-desc {
  font-size: 0.95rem;
  color: var(--sight-muted);
}

/* Zigzag Content Sections */
.sight-content-fold {
  padding: 10dvh 0;
}

.sight-fold-envelope {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.sight-fold-item {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.sight-fold-item:nth-child(even) {
  flex-direction: row-reverse;
}

.sight-fold-image {
  flex: 1;
  height: 450px;
  border-radius: var(--sight-radius);
  overflow: hidden;
  box-shadow: var(--sight-shadow);
}

.sight-fold-item:nth-child(odd) .sight-fold-image {
  clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.sight-fold-item:nth-child(even) .sight-fold-image {
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.sight-fold-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sight-fold-text {
  flex: 1;
}

.sight-tag {
  color: var(--sight-tone);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.sight-fold-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--sight-ink);
}

.sight-fold-text p {
  color: var(--sight-muted);
  margin-bottom: 1.5rem;
}

/* Feature grid structure: 2-row grid */
.sight-showcase {
  background-color: var(--sight-surface);
  padding: 10dvh 0;
  border-top: 1px solid var(--sight-border);
  border-bottom: 1px solid var(--sight-border);
}

.sight-showcase-envelope {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sight-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.sight-section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sight-section-header p {
  color: var(--sight-muted);
}

.sight-features-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.sight-feature-card {
  background: var(--sight-bg);
  padding: 2.5rem;
  border-radius: var(--sight-radius);
  border-left: 4px solid var(--sight-tone);
  box-shadow: var(--sight-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sight-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sight-shadow-elevated);
}

.sight-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--sight-tone-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.sight-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--sight-tone);
}

.sight-feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--sight-ink);
}

.sight-feature-card p {
  color: var(--sight-muted);
  font-size: 0.95rem;
}

/* "How it works" timeline styles */
.sight-timeline-segment {
  padding: 10dvh 0;
}

.sight-timeline-structure {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0 auto;
  padding: 0 1.5rem;
}

.sight-timeline-structure::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--sight-border);
  transform: translateX(-50%);
}

.sight-timeline-node {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sight-timeline-node:nth-child(even) {
  flex-direction: row-reverse;
}

.sight-timeline-bead {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sight-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 5;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
}

.sight-timeline-panel {
  width: 45%;
  background-color: var(--sight-surface);
  padding: 2rem;
  border-radius: var(--sight-radius);
  box-shadow: var(--sight-shadow);
  border: 1px solid var(--sight-border);
}

.sight-timeline-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.sight-timeline-panel p {
  color: var(--sight-muted);
  font-size: 0.95rem;
}

/* CTA strip */
.sight-cta-strip {
  position: relative;
  padding: 8dvh 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--sight-ink-light);
  text-align: center;
}

.sight-cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 15, 25, 0.75);
  z-index: 1;
}

.sight-cta-envelope {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sight-cta-envelope h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.sight-cta-envelope p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(248, 250, 252, 0.9);
}

/* Booking Page FAQ & Form */
.sight-booking-lattice {
  padding: 6dvh 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sight-booking-form-box {
  max-width: 650px;
  margin: 0 auto 5rem auto;
  background: var(--sight-surface);
  padding: 3.5rem;
  border-radius: var(--sight-radius);
  box-shadow: var(--sight-shadow-elevated);
  border: 1px solid var(--sight-border);
}

.sight-booking-form-box h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.sight-form-group {
  margin-bottom: 1.5rem;
}

.sight-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.sight-form-group input,
.sight-form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sight-border);
  border-radius: 8px;
  background-color: var(--sight-bg);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.sight-form-group input:focus,
.sight-form-group textarea:focus {
  outline: none;
  border-color: var(--sight-tone);
}

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

.sight-checkbox-group input {
  margin-top: 0.3rem;
  cursor: pointer;
}

.sight-checkbox-group label {
  font-size: 0.85rem;
  color: var(--sight-muted);
  line-height: 1.4;
}

.sight-form-button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 999px;
  background: var(--sight-gradient);
  color: white;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sight-form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}

/* FAQ Segment styling (reserve.html) */
.sight-faq-segment {
  max-width: 800px;
  margin: 0 auto;
}

.sight-faq-head {
  text-align: center;
  margin-bottom: 3rem;
}

.sight-faq-head h2 {
  font-size: 2rem;
}

.sight-faq-accordions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sight-faq-item {
  background: var(--sight-surface);
  border: 1px solid var(--sight-border);
  border-radius: var(--sight-radius);
  padding: 1.5rem 2rem;
}

.sight-faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--sight-ink);
}

.sight-faq-item p {
  color: var(--sight-muted);
  font-size: 0.95rem;
}

/* Contact sidebar inside reserve.html */
.sight-reserve-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.sight-reserve-card {
  background: var(--sight-surface);
  padding: 2rem;
  border-radius: var(--sight-radius);
  box-shadow: var(--sight-shadow);
  border: 1px solid var(--sight-border);
}

.sight-reserve-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sight-tone-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.sight-reserve-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--sight-tone);
}

.sight-reserve-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.sight-reserve-card p {
  font-size: 0.9rem;
  color: var(--sight-muted);
  margin-bottom: 1rem;
}

.sight-reserve-card-list {
  list-style: none;
}

.sight-reserve-card-list li {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.25rem;
  color: var(--sight-ink);
}

.sight-reserve-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sight-tone);
}

/* Expert Page Specific Structures */
.sight-expert-headline {
  padding: 8dvh 0;
  background-size: cover;
  background-position: center;
  color: var(--sight-ink-light);
  text-align: center;
  position: relative;
}

.sight-expert-headline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 15, 25, 0.75);
  z-index: 1;
}

.sight-expert-headline-envelope {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.sight-expert-bio-segment {
  padding: 10dvh 0;
}

.sight-expert-bio-envelope {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.sight-expert-bio-img {
  flex: 1;
  height: 500px;
  border-radius: var(--sight-radius);
  overflow: hidden;
  box-shadow: var(--sight-shadow-elevated);
}

.sight-expert-bio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sight-expert-bio-text {
  flex: 1;
}

.sight-expert-bio-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.sight-expert-bio-text p {
  color: var(--sight-muted);
  margin-bottom: 1.5rem;
}

/* Footer Section (Professional Dark) */
.sight-bottom {
  background-color: var(--sight-dark-surface);
  color: var(--sight-ink-light);
  padding: 5rem 2rem 2rem 2rem;
  border-top: 4px solid var(--sight-tone);
}

.sight-bottom-envelope {
  max-width: 1200px;
  margin: 0 auto;
}

.sight-bottom-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.sight-bottom-brand-col svg {
  fill: var(--sight-tone);
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.sight-bottom-brand-col h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.sight-bottom-brand-col p {
  color: #94a3b8;
  font-size: 0.95rem;
  max-width: 400px;
}

.sight-bottom-links-col h5 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--sight-tone);
}

.sight-bottom-links-col ul {
  list-style: none;
}

.sight-bottom-links-col ul li {
  margin-bottom: 0.75rem;
}

.sight-bottom-links-col ul li a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.sight-bottom-links-col ul li a:hover {
  color: var(--sight-tone);
}

.sight-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--sight-tone);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

.sight-bottom-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* Cookie banner style */
.sight-cookie-flag {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--sight-dark-surface);
  color: var(--sight-ink-light);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  animation: slide-up-cookie 0.4s ease-out;
}

@keyframes slide-up-cookie {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

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

.sight-cookie-title {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #cbd5e1;
}

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

.sight-cookie-trigger {
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.sight-cookie-trigger-accept {
  background: var(--sight-gradient);
  color: white;
  border: none;
}

.sight-cookie-trigger-decline {
  background: transparent;
  color: var(--sight-ink-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sight-cookie-trigger-accept:hover {
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

.sight-cookie-trigger-decline:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Legal Pages Template */
.sight-doc-canopy {
  padding: 6dvh 0;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sight-doc-canopy h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--sight-ink);
}

.sight-doc-content section {
  margin-bottom: 2.5rem;
}

.sight-doc-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--sight-ink);
}

.sight-doc-content p {
  color: var(--sight-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Thank You Page Styling */
.sight-thank-space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.sight-thank-box {
  background: var(--sight-surface);
  max-width: 600px;
  width: 100%;
  padding: 4rem 2rem;
  border-radius: var(--sight-radius);
  box-shadow: var(--sight-shadow-elevated);
  text-align: center;
  border: 1px solid var(--sight-border);
}

.sight-thank-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--sight-radius);
  margin-bottom: 2rem;
}

.sight-thank-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sight-thank-box p {
  color: var(--sight-muted);
  margin-bottom: 2rem;
}

/* Responsive CSS */
@media (max-width: 992px) {
  .sight-hamburger-label {
    display: flex;
  }

  .sight-guide {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background-color: var(--sight-dark-surface);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: right 0.3s ease;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.2);
  }

  .sight-hamburger-check:checked ~ .sight-guide {
    right: 0;
  }

  .sight-hamburger-check:checked ~ .sight-hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .sight-hamburger-check:checked ~ .sight-hamburger-label span:nth-child(2) {
    opacity: 0;
  }

  .sight-hamburger-check:checked ~ .sight-hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .sight-fold-item {
    flex-direction: column !important;
    gap: 3rem;
  }

  .sight-fold-image {
    width: 100%;
    height: 350px;
    clip-path: none !important;
  }

  .sight-features-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sight-timeline-structure::before {
    left: 20px;
  }

  .sight-timeline-node {
    flex-direction: row !important;
    justify-content: flex-start;
    padding-left: 50px;
  }

  .sight-timeline-bead {
    left: 20px;
  }

  .sight-timeline-panel {
    width: 100%;
  }

  .sight-expert-bio-envelope {
    flex-direction: column;
    gap: 3rem;
  }

  .sight-expert-bio-img {
    width: 100%;
    height: 350px;
  }

  .sight-bottom-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sight-cookie-envelope {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .sight-stat-mosaic {
    grid-template-columns: 1fr;
  }
  
  .sight-booking-form-box {
    padding: 2rem 1.5rem;
  }
}