:root {
  --sight-primary-tone: #ff5722;
  --sight-deep-ocean: #0f172a;
  --sight-clean-canvas: #f8fafc;
  --sight-pure-neutral: #ffffff;
  --sight-mute-slate: #64748b;
  --sight-border-tint: #cbd5e1;
  --sight-vanguard-blue: #2563eb;
  --sight-vanguard-glow: rgba(255, 87, 34, 0.25);
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--sight-clean-canvas);
  color: var(--sight-deep-ocean);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* HEADER STYLE (Preset C - Bold Accent) */
.sight-navigation-crown {
  background-color: var(--sight-primary-tone);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

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

.sight-brand-signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--sight-pure-neutral);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.sight-navigation-hub {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.sight-crown-link {
  color: var(--sight-pure-neutral);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.sight-crown-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--sight-pure-neutral);
  transition: width 0.3s ease;
}

.sight-crown-link:hover::after {
  width: 100%;
}

/* Mobile Hamburger logic */
.sight-burger-toggle {
  display: none;
}

.sight-burger-icon {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.sight-burger-icon span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--sight-pure-neutral);
  border-radius: 999px;
  transition: all 0.3s ease;
}

/* MAIN HERO (Preset C - Bold Accent) */
.sight-portal-hero {
  position: relative;
  background: linear-gradient(135deg, var(--sight-primary-tone) 0%, var(--sight-deep-ocean) 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10dvh 2rem;
  overflow: hidden;
}

.sight-hero-giant-num {
  position: absolute;
  font-size: 24rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--sight-pure-neutral);
  opacity: 0.05;
  bottom: -50px;
  right: -20px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.sight-hero-shapes::before, .sight-hero-shapes::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.sight-hero-shapes::before {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  border: 40px solid rgba(255,255,255,0.02);
}

.sight-hero-shapes::after {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: -5%;
  background: linear-gradient(45deg, var(--sight-primary-tone), transparent);
  opacity: 0.2;
}

.sight-hero-broadsheet {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}

.sight-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--sight-pure-neutral);
  line-height: 1.1;
  margin-bottom: 2rem;
  max-width: 850px;
}

.sight-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 650px;
  font-weight: 300;
}

/* BUTTONS */
.sight-action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.sight-action-pill--primary {
  background-color: var(--sight-pure-neutral);
  color: var(--sight-primary-tone);
}

.sight-action-pill--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.sight-action-pill--accent {
  background-color: var(--sight-primary-tone);
  color: var(--sight-pure-neutral);
}

.sight-action-pill--accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--sight-vanguard-glow);
}

/* DIAGONAL CONTENT SECTION (Preset C - Bold Accent) */
.sight-diagonal-hull {
  padding: 12dvh 0;
  background-color: var(--sight-deep-ocean);
  position: relative;
}

.sight-diagonal-media-strip {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sight-diagonal-caption-box {
  max-width: 900px;
  margin: 4rem auto 0 auto;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid var(--sight-primary-tone);
  border-radius: 0 20px 20px 0;
  backdrop-filter: blur(10px);
  color: var(--sight-pure-neutral);
}

.sight-diagonal-heading {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* FEATURES GRID (Preset C - Bold Accent) */
.sight-features-block {
  padding: 10dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sight-section-head {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 5rem;
  position: relative;
  color: var(--sight-deep-ocean);
}

.sight-section-head::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background-color: var(--sight-primary-tone);
  margin: 1.5rem auto 0 auto;
}

.sight-features-core {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.sight-features-unit {
  background: var(--sight-pure-neutral);
  padding: 3rem 2.5rem;
  position: relative;
  transition: transform 0.3s;
  border-top: 4px solid var(--sight-vanguard-blue);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.sight-features-unit:hover {
  transform: translateY(-5px);
}

.sight-features-num {
  font-size: 4rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--sight-primary-tone);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.sight-features-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--sight-deep-ocean);
}

.sight-features-text {
  color: var(--sight-mute-slate);
  font-size: 1rem;
}

/* HOW IT WORKS (Preset C - Bold Accent) */
.sight-pathway-hull {
  padding: 10dvh 2rem;
  background-color: var(--sight-clean-canvas);
}

.sight-pathway-track {
  max-width: 1100px;
  margin: 4rem auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 2rem;
}

.sight-pathway-track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 4px;
  background-color: var(--sight-primary-tone);
  z-index: 1;
}

.sight-pathway-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.sight-pathway-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.sight-pathway-circle--filled {
  background-color: var(--sight-primary-tone);
  color: var(--sight-pure-neutral);
  box-shadow: 0 10px 20px var(--sight-vanguard-glow);
}

.sight-pathway-circle--outline {
  background-color: var(--sight-pure-neutral);
  color: var(--sight-primary-tone);
  border: 4px solid var(--sight-primary-tone);
}

.sight-pathway-node:hover .sight-pathway-circle {
  transform: scale(1.1);
}

.sight-pathway-node-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.sight-pathway-node-desc {
  color: var(--sight-mute-slate);
  font-size: 0.95rem;
  max-width: 250px;
}

/* CTA STRIP (Preset C - Bold Accent) */
.sight-cta-banner {
  background-color: var(--sight-deep-ocean);
  color: var(--sight-pure-neutral);
  padding: 8dvh 2rem;
}

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

.sight-cta-slogan {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 700px;
}

/* STATS ROW */
.sight-stats-strip {
  padding: 6dvh 2rem;
  background: var(--sight-pure-neutral);
  border-bottom: 1px solid var(--sight-border-tint);
}

.sight-stats-quad {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.sight-stat-value {
  font-size: 3.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--sight-primary-tone);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sight-stat-label {
  color: var(--sight-mute-slate);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* EXPERT LAYOUT SPECIFICS */
.sight-expert-matrix {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.sight-expert-bio {
  flex: 55;
}

.sight-expert-canvas {
  flex: 45;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

/* RESERVE FORM LAYOUT (Preset C - Split Accent) */
.sight-booking-division {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8dvh 2rem;
  display: flex;
  gap: 4rem;
}

.sight-booking-form-area {
  flex: 60;
}

.sight-booking-sidebar {
  flex: 40;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sight-interactive-card {
  background: var(--sight-pure-neutral);
  border-left: 4px solid var(--sight-primary-tone);
  padding: 2rem;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sight-interactive-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.sight-interactive-card p {
  color: var(--sight-mute-slate);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.sight-bullet-index {
  list-style-type: none;
}

.sight-bullet-index li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--sight-mute-slate);
}

.sight-bullet-index li::before {
  content: '•';
  color: var(--sight-primary-tone);
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* FORM STYLING */
.sight-mainstream-form {
  background: var(--sight-pure-neutral);
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

.sight-form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--sight-deep-ocean);
  margin-bottom: 0.5rem;
}

.sight-form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--sight-border-tint);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

.sight-form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 2rem 0;
  cursor: pointer;
}

.sight-form-checkbox-wrap input {
  margin-top: 5px;
  transform: scale(1.1);
  accent-color: var(--sight-primary-tone);
}

.sight-form-checkbox-text {
  font-size: 0.85rem;
  color: var(--sight-mute-slate);
}

/* FAQ ACCORDION STYLE */
.sight-faq-hull {
  max-width: 900px;
  margin: 6rem auto 0 auto;
  padding: 0 2rem;
}

.sight-faq-unit {
  background: var(--sight-pure-neutral);
  margin-bottom: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--sight-border-tint);
  overflow: hidden;
}

.sight-faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sight-deep-ocean);
  cursor: default;
}

.sight-faq-respond {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--sight-mute-slate);
  font-size: 0.95rem;
  border-top: 1px dashed var(--sight-border-tint);
  padding-top: 1rem;
}

/* FOOTER */
.sight-footprint {
  background-color: var(--sight-deep-ocean);
  color: var(--sight-pure-neutral);
  padding: 6rem 2rem 2rem 2rem;
}

.sight-footprint-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 3rem;
}

.sight-footprint-brand-col {
  max-width: 350px;
}

.sight-footprint-brand-col p {
  color: var(--sight-mute-slate);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.sight-footprint-links {
  display: flex;
  gap: 4rem;
}

.sight-footprint-heading {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.sight-footprint-list {
  list-style: none;
}

.sight-footprint-list li {
  margin-bottom: 0.75rem;
}

.sight-footprint-list a {
  color: var(--sight-mute-slate);
  font-size: 0.95rem;
}

.sight-footprint-list a:hover {
  color: var(--sight-pure-neutral);
}

.sight-footprint-bottom {
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  text-align: center;
}

.sight-disclaimer {
  font-size: 0.8rem;
  color: var(--sight-mute-slate);
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.5;
}

.sight-copyright {
  font-size: 0.85rem;
  color: var(--sight-mute-slate);
}

/* COOKIE BANNER */
.sight-cookie-barrier {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--sight-deep-ocean);
  color: var(--sight-pure-neutral);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
  display: none;
}

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

.sight-cookie-text {
  font-size: 0.9rem;
  max-width: 800px;
}

.sight-cookie-controls {
  display: flex;
  gap: 1rem;
}

.sight-cookie-btn {
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}

.sight-cookie-btn--accept {
  background-color: var(--sight-primary-tone);
  color: var(--sight-pure-neutral);
}

.sight-cookie-btn--decline {
  background-color: transparent;
  color: var(--sight-pure-neutral);
  border: 1px solid rgba(255,255,255,0.3);
}

/* PRIVACY / TERMS CONTENT HULL */
.sight-legal-hull {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
  min-height: 100vh;
}

.sight-legal-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--sight-primary-tone);
  padding-bottom: 1rem;
}

.sight-legal-text {
  color: var(--sight-deep-ocean);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.sight-legal-text h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem 0;
}

.sight-legal-text p {
  margin-bottom: 1.5rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .sight-navigation-hub {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--sight-primary-tone);
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .sight-burger-icon {
    display: flex;
  }

  /* Trigger display via sibling check or JS */
  .sight-burger-toggle:checked ~ .sight-navigation-hub {
    display: flex;
  }

  .sight-burger-toggle:checked ~ .sight-burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .sight-burger-toggle:checked ~ .sight-burger-icon span:nth-child(2) {
    opacity: 0;
  }

  .sight-burger-toggle:checked ~ .sight-burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .sight-cta-grid {
    flex-direction: column;
    text-align: center;
  }

  .sight-pathway-track {
    flex-direction: column;
    gap: 3rem;
  }

  .sight-pathway-track::before {
    display: none;
  }

  .sight-expert-matrix, .sight-booking-division {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .sight-diagonal-media-strip {
    height: 40vh;
  }
  
  .sight-diagonal-caption-box {
    padding: 1.5rem;
  }

  .sight-mainstream-form {
    padding: 2rem;
  }
}