/* ============================================
   ENDEAVOUR - Homepage Styles
   Mobile First
   ============================================ */

/* ==========================================
   HIDE SCROLLBAR
   ========================================== */
html {
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

/* ==========================================
   PAGE DOTS — right side
   Hidden by default on mobile
   ========================================== */
.page-dots {
  display: none;
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.page-dots__btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.page-dots__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.4);
}

.page-dots__btn--active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

/* ==========================================
   CHAPTER LABELS
   ========================================== */
.chapter-label {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.chapter-label--light {
  color: var(--accent-hover);
}

/* ==========================================
   NAVBAR — Mobile First
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  border-bottom: 1px solid rgba(15, 27, 45, 0.06);
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(15, 27, 45, 0.08);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  position: relative;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: absolute;
  left: 12px;
  transform: none;
}

.navbar__logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.navbar__menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 100px 24px 40px;
  gap: 0;
  transform: none;
  transition: right var(--transition-base);
  box-shadow: -8px 0 40px rgba(15, 27, 45, 0.12);
  z-index: 999;
  overflow-y: auto;
  flex-wrap: nowrap;
}

.navbar__menu--open {
  left: 0;
}

.navbar__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(15, 27, 45, 0.06);
}

.navbar__link:hover {
  color: var(--accent);
  background: rgba(232, 114, 12, 0.08);
}

.navbar__link--active {
  color: var(--accent);
  background: rgba(232, 114, 12, 0.1);
}

.navbar__chevron {
  transition: transform var(--transition-fast);
}

.navbar__item--open .navbar__chevron {
  transform: rotate(180deg);
}

.navbar__item--dropdown {
  position: relative;
}

.navbar__dropdown {
  position: static;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  display: none;
  padding: 0 0 0 8px;
  backdrop-filter: none;
  border: none;
  background: transparent;
  min-width: unset;
}

.navbar__item--open .navbar__dropdown {
  display: block;
}

.navbar__dropdown-link {
  display: block;
  padding: 12px 18px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.navbar__dropdown-link:hover {
  background: var(--accent);
  color: var(--white);
}

.navbar__dropdown-group {
  padding: 4px 0;
}

.navbar__dropdown-group + .navbar__dropdown-group {
  border-top: 1px solid rgba(15, 27, 45, 0.06);
  margin-top: 4px;
  padding-top: 8px;
}

.navbar__dropdown-label {
  display: block;
  padding: 6px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.navbar__dropdown-tree {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar__dropdown-tree li {
  position: relative;
  padding-left: 12px;
}

.navbar__dropdown-tree li::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: rgba(15, 27, 45, 0.12);
}

.navbar__dropdown-tree .navbar__dropdown-link {
  padding-left: 26px;
}

.navbar__cta {
  padding: 10px 24px;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  background: #E8720C;
  border-color: #E8720C;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(232, 114, 12, 0.3);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar__cta:hover {
  background: #F28A2E;
  border-color: #F28A2E;
  box-shadow: 0 6px 25px rgba(232, 114, 12, 0.45);
}

.navbar__item--cta {
  margin-top: 16px;
  flex-shrink: 0;
}

.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  position: absolute;
  left: auto;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.navbar__toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar__toggle--active .navbar__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle--active .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle--active .navbar__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.navbar__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 998;
}

.navbar__overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   PAGE SCROLL SYSTEM
   ========================================== */
.page {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

body.page-snap-active .page {
  min-height: var(--snap-vh, 100vh);
}

body.page-snap-active .page.section {
  min-height: calc(var(--snap-vh, 100vh) - var(--navbar-height));
}

body.page-snap-active .hero,
body.page-snap-active .contact {
  min-height: var(--snap-vh, 100vh);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 8000;
  pointer-events: none;
  overflow: hidden;
}

.page-transition__slice {
  position: absolute;
  left: 0;
  width: 100%;
  height: 25%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
}

.page-transition__slice:nth-child(1) { top: 0; }
.page-transition__slice:nth-child(2) { top: 25%; }
.page-transition__slice:nth-child(3) { top: 50%; }
.page-transition__slice:nth-child(4) { top: 75%; }

.page-transition--enter .page-transition__slice {
  animation: sliceIn 0.4s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-transition--enter .page-transition__slice:nth-child(2) { animation-delay: 0.05s; }
.page-transition--enter .page-transition__slice:nth-child(3) { animation-delay: 0.1s; }
.page-transition--enter .page-transition__slice:nth-child(4) { animation-delay: 0.15s; }

.page-transition--leave .page-transition__slice {
  transform: scaleX(1);
  transform-origin: right center;
  animation: sliceOut 0.4s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-transition--leave .page-transition__slice:nth-child(2) { animation-delay: 0.05s; }
.page-transition--leave .page-transition__slice:nth-child(3) { animation-delay: 0.1s; }
.page-transition--leave .page-transition__slice:nth-child(4) { animation-delay: 0.15s; }

@keyframes sliceIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes sliceOut {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

.page-transition__accent {
  position: absolute;
  left: 0;
  top: 45%;
  width: 100%;
  height: 10%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: translateX(-100%);
}

.page-transition--enter .page-transition__accent {
  animation: accentFlash 0.6s 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes accentFlash {
  0% { opacity: 0; transform: translateX(-100%); }
  30% { opacity: 0.7; }
  100% { opacity: 0; transform: translateX(100%); }
}

.page--leaving > .container {
  animation: pageContentOut 0.3s ease forwards;
}

.page--entering > .container {
  animation: pageContentIn 0.4s 0.35s ease both;
}

.page--leaving .section-header {
  animation: sectionHeaderOut 0.3s ease forwards;
}

.page--entering .section-header {
  animation: sectionHeaderIn 0.45s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes pageContentOut {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes pageContentIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sectionHeaderOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-24px);
  }
}

@keyframes sectionHeaderIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page.section {
  padding: clamp(12px, 2vh, 28px) 0 0 0;
}

.page.section > .container {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.page--fitted > .container {
  zoom: var(--page-fit-scale, 1);
  transform-origin: top center;
}

@supports not (zoom: 1) {
  .page--fitted > .container {
  transform: scale(var(--page-fit-scale, 1));
  transform-origin: top center;
  }
}

.page .section-header {
  margin-bottom: clamp(16px, 2.5vh, 32px);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: auto;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 45, 0.5);
  z-index: 2;
}

.hero__orb {
  display: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 3;
  pointer-events: none;
  opacity: 0.5;
}

.hero__orb--1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232, 114, 12, 0.35) 0%, transparent 70%);
  top: 15%;
  left: 10%;
  animation: orbFloat1 18s ease-in-out infinite;
}

.hero__orb--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  top: 60%;
  left: 25%;
  animation: orbFloat2 22s ease-in-out infinite;
}

.hero__orb--3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(191, 117, 27, 0.2) 0%, transparent 70%);
  top: 30%;
  right: 15%;
  animation: orbFloat3 20s ease-in-out infinite;
}

.hero__orb--4 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  bottom: 20%;
  right: 30%;
  animation: orbFloat1 15s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, -60px); }
  75% { transform: translate(40px, -20px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-40px, -30px); }
  66% { transform: translate(30px, -50px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-30px, 40px); }
  50% { transform: translate(20px, 20px); }
  75% { transform: translate(-10px, -30px); }
}

.hero__container {
  position: relative;
  z-index: 5;
  max-width: 1600px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.hero__content {
  text-align: center;
  max-width: 680px;
}

.hero__chapter {
  color: var(--accent-hover);
}

.hero__title {
  color: var(--white);
  font-size: clamp(2.2rem, 8vw, 3rem);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero__title-accent {
  background: linear-gradient(135deg, #E8720C, #F2A54A, #E8720C);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 20px rgba(232, 114, 12, 0.4));
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-base);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__actions .btn {
  width: 100%;
  justify-content: center;
}

.hero__actions .btn-primary {
  border-radius: var(--radius-full);
  padding: 16px 36px;
  font-size: var(--text-base);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.hero__actions .btn-secondary {
  border-radius: var(--radius-full);
  padding: 16px 36px;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.hero__actions .btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.hero__scroll-hint {
  display: none;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}

/* ==========================================
   OUR STORY
   ========================================== */
.our-story {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.our-story::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 114, 12, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.our-story__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.our-story__content h2 {
  margin-bottom: 16px;
}

.our-story__lead {
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 500;
}

.our-story__content p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.our-story__stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(232, 114, 12, 0.15);
}

.our-story__stat {
  text-align: center;
  position: relative;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(232, 114, 12, 0.06) 0%, rgba(232, 114, 12, 0.02) 100%);
  border-radius: var(--radius-lg);
  min-width: auto;
  flex: 1;
}

.our-story__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.our-story__stat span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 5px;
}

.our-story__visual {
  position: relative;
}

.our-story__slideshow {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 27, 45, 0.12);
}

.our-story__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.our-story__slide--active {
  opacity: 1;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 50%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  margin-top: 0;
}

.services__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 30px 28px;
  transition: all var(--transition-base);
  border: 1px solid rgba(15, 27, 45, 0.06);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 27, 45, 0.05);
}

.services__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.services__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(15, 27, 45, 0.1), 0 8px 20px rgba(232, 114, 12, 0.06);
  border-color: transparent;
}

.services__card:hover::before {
  opacity: 1;
}

.services__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-light), #FFF3E6);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  color: var(--accent);
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(232, 114, 12, 0.08);
}

.services__card:hover .services__card-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 8px 20px var(--accent-glow);
}

.services__card-title {
  font-size: var(--text-base);
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 700;
}

.services__card-text {
  font-size: var(--text-sm);
  margin-bottom: 14px;
  line-height: 1.6;
}

.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.services__card-link:hover {
  gap: 12px;
}

.services__card-link svg {
  transition: transform 0.3s ease;
}

.services__card-detail {
  display: none;
}

.services-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.services-modal--open {
  opacity: 1;
  visibility: visible;
}

.services-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 45, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.services-modal__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 24px 24px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(15, 27, 45, 0.2), 0 12px 32px rgba(232, 114, 12, 0.08);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-modal--open .services-modal__card {
  transform: translateY(0) scale(1);
}

.services-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 27, 45, 0.06);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.services-modal__close:hover {
  background: rgba(15, 27, 45, 0.12);
  color: var(--primary);
}

.services-modal__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-light), #FFF3E6);
  border-radius: var(--radius-lg);
  color: var(--accent);
  margin-bottom: 18px;
}

.services-modal__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.services-modal__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.services-modal__details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-modal__details li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.services-modal__details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.services-modal__details li strong {
  color: var(--primary);
  font-weight: 600;
}

.services-modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-base);
}

.services-modal__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.services__footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.services__download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  font-weight: 600;
  font-size: var(--text-sm);
}

.services__download svg {
  transition: transform var(--transition-base);
}

.services__download:hover svg {
  transform: translateY(2px);
}

/* ==========================================
   JOURNEY
   ========================================== */
.journey {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 40%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.journey__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.journey__left {
  display: flex;
  flex-direction: column;
}

.journey__cinema {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15, 27, 45, 0.12);
}

.journey__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.journey__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 4s ease-out;
}

.journey__slide--active {
  opacity: 1;
  transform: scale(1);
}

.journey__slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 28px 20px;
  background: linear-gradient(to top, rgba(15, 27, 45, 0.8) 0%, rgba(15, 27, 45, 0.2) 60%, transparent 100%);
}

.journey__slide-caption {
  color: var(--white);
  font-size: var(--text-sm);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.journey__slide-caption--visible {
  opacity: 1;
  transform: translateY(0);
}

.journey__timeline {
  position: relative;
  margin-top: 20px;
  padding: 0;
}

.journey__track {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--cream-dark);
  border-radius: var(--radius-full);
}

.journey__progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: var(--radius-full);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey__nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  flex-wrap: nowrap;
  gap: 8px;
}

.journey__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.journey__node-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--cream-dark);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.journey__node:hover .journey__node-dot {
  border-color: var(--accent);
  transform: scale(1.15);
}

.journey__node--active .journey__node-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 114, 12, 0.15), 0 2px 8px var(--accent-glow);
  transform: scale(1.2);
}

.journey__node-label {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  transition: color var(--transition-base);
  white-space: nowrap;
}

.journey__node--active .journey__node-label {
  color: var(--accent);
  font-weight: 700;
}

.journey__right {
  padding-top: 4px;
}

.journey__right-heading {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.journey__values {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.journey__value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  transition: background var(--transition-base);
}

.journey__value:hover {
  background: rgba(232, 114, 12, 0.04);
}

.journey__value-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 114, 12, 0.08);
  border-radius: var(--radius-md);
  color: var(--accent);
}

.journey__value-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.journey__value-text {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   RESULTS
   ========================================== */
.results {
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 30%, var(--white) 60%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.results::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 114, 12, 0.04) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.results__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.results__metric {
  text-align: center;
  padding: 18px 14px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 27, 45, 0.06);
  box-shadow: 0 4px 16px rgba(15, 27, 45, 0.04);
  transition: all var(--transition-base);
}

.results__metric:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 114, 12, 0.25);
  box-shadow: 0 12px 36px rgba(15, 27, 45, 0.08);
}

.results__metric .metrics__number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.results__metric-label {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-strip__inner {
  margin-bottom: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(15, 27, 45, 0.06);
  border-bottom: 1px solid rgba(15, 27, 45, 0.06);
}

.trust-strip__label {
  text-align: center;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.trust-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-strip__item {
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
  border: 1px solid rgba(15, 27, 45, 0.06);
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.trust-strip__item:hover {
  background: var(--white);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 27, 45, 0.06);
}

.trust-strip__item svg {
  color: var(--accent);
  opacity: 0.7;
}

.reviews__wrapper {
  position: relative;
  overflow: hidden;
}

.reviews__track {
  display: grid;
  grid-template-columns: 1fr;
}

.reviews__card {
  grid-column: 1;
  grid-row: 1;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(15, 27, 45, 0.06);
  border: 1px solid rgba(15, 27, 45, 0.05);
  position: relative;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.reviews__card--active {
  opacity: 1;
  visibility: visible;
}

.reviews__card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(232, 114, 12, 0.06);
  line-height: 1;
}

.reviews__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.reviews__text {
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 400;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviews__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
}

.reviews__author strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
}

.reviews__author span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.reviews__google {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.reviews__controls,
.reviews__btn,
.reviews__dots,
.reviews__dot {
  display: none;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
  position: relative;
  min-height: auto;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 27, 45, 0.70) 0%,
    rgba(15, 27, 45, 0.80) 50%,
    rgba(10, 10, 15, 0.90) 100%
  );
}

.contact__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact__content h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.contact__content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-base);
  max-width: 600px;
  margin: 0 auto 40px;
}

.contact__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact__actions .btn {
  width: 100%;
}

.contact__actions .btn-primary {
  border-radius: var(--radius-full);
  padding: 16px 40px;
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  font-weight: 700;
}

.contact__actions .btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.contact__actions .btn-secondary {
  border-radius: var(--radius-full);
  padding: 16px 40px;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.contact__actions .btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ==========================================
   CONTACT INFO
   ========================================== */
.contact-info {
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 50%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.contact-info__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.contact-info__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 27, 45, 0.06);
  transition: all var(--transition-base);
}

.contact-info__item:hover {
  box-shadow: 0 4px 20px rgba(15, 27, 45, 0.06);
  border-color: rgba(232, 114, 12, 0.15);
}

.contact-info__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 114, 12, 0.08);
  border-radius: var(--radius-md);
  color: var(--accent);
}

.contact-info__item h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-info__item a,
.contact-info__item p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-info__item a:hover {
  color: var(--accent);
}

.contact-info__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-left: 18px;
}

.contact-info__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  border: 1px solid rgba(15, 27, 45, 0.06);
  transition: all var(--transition-base);
}

.contact-info__social a:hover {
  color: var(--accent);
  border-color: rgba(232, 114, 12, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 114, 12, 0.1);
}

.contact-info__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 300px;
  box-shadow: 0 8px 32px rgba(15, 27, 45, 0.08);
}

.contact-info__map iframe {
  display: block;
  width: 100%;
  min-height: 300px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
}

.footer__main {
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer__logo-img {
  height: 86px;
  width: auto;
  margin-bottom: 20px;
  filter: none;
}

.footer__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--accent-glow);
}

.footer__heading {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: var(--radius-full);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition-fast);
}

.footer__link:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
}

.footer__contact-item svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.45);
}

.footer__contact-item a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer__bottom-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.25);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.25);
}

.footer__bottom-links a:hover {
  color: var(--accent);
}

/* ==========================================
   DOODLES
   ========================================== */
.doodles-container {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
  -webkit-mask-image: linear-gradient(to bottom, transparent 82%, rgba(0,0,0,0.4) 88%, black 95%);
  mask-image: linear-gradient(to bottom, transparent 82%, rgba(0,0,0,0.4) 88%, black 95%);
}

.doodle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doodle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================
   AMBIENT DECORATIONS
   ========================================== */
.services,
.journey,
.results {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 114, 12, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 27, 45, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.journey::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232, 114, 12, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.journey::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(15, 27, 45, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.results::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 27, 45, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services__grid::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -40px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(232, 114, 12, 0.1) 2px, transparent 2px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

/* ==========================================
   SCROLL-TRIGGERED ENTRANCE ANIMATIONS
   ========================================== */
[data-animate] {
  opacity: 0;
  will-change: transform, opacity, filter;
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.15s;
}

[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-down"] { transform: translateY(-40px); }
[data-animate="slide-left"] { transform: translateX(-60px); }
[data-animate="slide-right"] { transform: translateX(60px); }
[data-animate="scale-up"] { transform: scale(0.85); }

[data-animate="blur-in"] {
  filter: blur(12px);
  transform: translateY(10px);
}

[data-animate="clip-left"] {
  clip-path: inset(0 100% 0 0);
  transform: none;
  opacity: 1;
}

[data-animate="clip-up"] {
  clip-path: inset(100% 0 0 0);
  transform: none;
  opacity: 1;
}

[data-animate="flip-up"] {
  transform: perspective(800px) rotateX(15deg) translateY(30px);
  transform-origin: bottom center;
}

[data-animate="rotate-in"] {
  transform: rotate(-5deg) translateY(30px) scale(0.95);
}

[data-animate].revealed {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] { transition-delay: 0.1s !important; }
[data-delay="2"] { transition-delay: 0.2s !important; }
[data-delay="3"] { transition-delay: 0.3s !important; }
[data-delay="4"] { transition-delay: 0.4s !important; }
[data-delay="5"] { transition-delay: 0.5s !important; }
[data-delay="6"] { transition-delay: 0.6s !important; }
[data-delay="7"] { transition-delay: 0.7s !important; }

[data-duration="fast"] { transition-duration: 0.5s !important; }
[data-duration="slow"] { transition-duration: 1.2s !important; }

/* ==========================================
   EXTRA ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ==========================================
   TABLET
   ========================================== */
@media (min-width: 768px) {
  .hero__container {
    padding: 0 clamp(24px, 5vw, 80px);
  }

  .hero__actions {
    flex-direction: row;
  }

  .hero__actions .btn {
    width: auto;
  }

  .our-story__stats {
    gap: 16px;
  }

  .our-story__stat {
    min-width: 100px;
    padding: 8px 12px;
    flex: 0 1 auto;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results__metric .metrics__number {
    font-size: var(--text-3xl);
  }

  .contact__actions {
    flex-direction: row;
  }

  .contact__actions .btn {
    width: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================
   DESKTOP
   ========================================== */
@media (min-width: 992px) {
  .page {
    min-height: 100vh;
  }

  .page.section {
    min-height: calc(100vh - var(--navbar-height));
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .navbar__container {
    justify-content: flex-start;
    max-width: 1600px;
    padding: 0 clamp(20px, 2vw, 28px);
  }

  .navbar__logo {
    position: absolute;
    left: 12px;
    transform: none;
  }

  .navbar__logo-img {
    height: 112px;
  }

  .navbar__toggle {
    display: none;
  }

  .navbar__menu {
    position: absolute;
    top: auto;
    left: 50%;
    right: auto;
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 0;
    transform: translateX(-50%);
    transition: none;
    box-shadow: none;
    z-index: auto;
    overflow-y: visible;
  }

  .navbar__menu--open {
    right: auto;
  }

  .navbar__link {
    padding: 10px 16px;
    font-size: var(--text-sm);
    border-radius: var(--radius-full);
    border-bottom: none;
  }

  .navbar__link:hover {
    color: var(--accent);
    background: rgba(232, 114, 12, 0.06);
  }

  .navbar__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(15, 27, 45, 0.12);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    border: 1px solid rgba(15, 27, 45, 0.08);
    display: block;
  }

  .navbar__item--open .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
  }

  .navbar__dropdown-tree li::before {
    left: 18px;
  }

  .navbar__dropdown-tree .navbar__dropdown-link {
    padding-left: 34px;
  }

  .navbar__item--cta {
    margin-top: 0;
  }

  .hero {
    min-height: 100vh;
    padding: 0;
  }

  .hero__orb {
    display: block;
  }

  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(15, 27, 45, 0.3) 0%,
      rgba(15, 27, 45, 0.15) 50%,
      rgba(15, 27, 45, 0.35) 100%
    );
  }

  .hero__title {
    font-size: clamp(3rem, 6vw, 5rem);
  }

  .hero__text {
    font-size: var(--text-lg);
  }

  .hero__scroll-hint {
    display: block;
  }

  .our-story {
    padding-top: 15vh;
  }

  .our-story__layout {
    grid-template-columns: 55fr 45fr;
    gap: 40px;
  }

  .our-story__lead {
    font-size: var(--text-lg);
  }

  .our-story__slideshow {
    height: clamp(280px, 45vh, 420px);
  }

  .results__metrics {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact {
    min-height: 100vh;
    padding: 0;
  }

  .contact__content h2 {
    font-size: var(--text-5xl);
  }

  .contact__content p {
    font-size: var(--text-lg);
  }

  .contact-info__layout {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .contact-info__map {
    min-height: 380px;
  }

  .contact-info__map iframe {
    min-height: 380px;
  }

  .page-dots {
    display: flex;
  }

  .doodles-container {
    display: block;
  }
}

/* ==========================================
   RESPONSIVE SAFETY
   Ensure section content is never clipped on short or mid-size screens.
   ========================================== */
@media (max-width: 1199px), (max-height: 760px) {
  .page {
    min-height: auto;
  }

  .page.section {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .page .section-header {
    margin-bottom: 24px;
  }

  .page-dots {
    display: none;
  }

  .hero,
  .contact {
    min-height: auto;
    padding: 90px 0 56px;
  }

  .hero__title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    margin-bottom: 18px;
  }

  .hero__text,
  .contact__content p {
    font-size: var(--text-base);
    margin-bottom: 24px;
  }

  .hero__actions,
  .contact__actions {
    gap: 12px;
  }

  .our-story {
    padding-top: 56px;
  }

  .our-story__layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .our-story__slideshow {
    height: clamp(230px, 40vw, 360px);
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 0;
  }

  .services__card {
    padding: 22px 18px;
  }

  .journey__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journey__slides {
    aspect-ratio: 16 / 10;
  }

  .journey__slide-overlay {
    padding: 34px 20px 16px;
  }

  .journey__nodes {
    justify-content: space-between;
    gap: 0;
  }

  .journey__node {
    flex: 1 1 0;
    min-width: 0;
  }

  .results__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .contact-info__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info__map,
  .contact-info__map iframe {
    min-height: 280px;
  }
}

/* ==========================================
   TABLET / MOBILE
   ========================================== */
@media (max-width: 991px) {
  .page.section {
    padding: 16px 0 24px;
  }

  .hero,
  .contact {
    padding: 86px 0 50px;
  }

  .hero__container {
    padding: 0 18px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  .hero__actions,
  .contact__actions {
    flex-direction: column;
  }

  .hero__actions .btn,
  .contact__actions .btn {
    width: 100%;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .results__metrics {
    grid-template-columns: 1fr;
  }

  .journey__node-label {
    font-size: 0.5rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 576px) {
  .hero,
  .contact {
    padding: 82px 0 46px;
  }

  .hero__title {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
  }

  .hero__text,
  .contact__content p {
    font-size: 0.95rem;
  }

  .our-story__stats {
    gap: 8px;
  }

  .our-story__stat {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .our-story__stat:last-child {
    flex-basis: 100%;
  }

  .journey__slide-overlay {
    padding: 28px 16px 12px;
  }

  .journey__slide-caption {
    font-size: 0.8rem;
  }

  .contact-info__map,
  .contact-info__map iframe {
    min-height: 240px;
  }
}

/* ==========================================
   LARGE DESKTOP
   ========================================== */
@media (min-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: -120px;
  }

  .journey__layout {
    grid-template-columns: 60fr 40fr;
    gap: 36px;
  }

  .journey__slides {
    aspect-ratio: 4 / 3;
  }

  .journey__timeline {
    padding: 0 6%;
  }

  .journey__track {
    left: 6%;
    right: 6%;
  }

  .journey__node-label {
    font-size: 0.62rem;
  }

  .journey__values {
    gap: 6px;
  }

  .journey__value {
    padding: 12px 14px;
  }

  .results__metric .metrics__number {
    font-size: var(--text-4xl);
  }

  .trust-strip__logos {
    gap: 24px;
  }

  .trust-strip__item {
    padding: 8px 16px;
    font-size: var(--text-sm);
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer__bottom-content {
    flex-direction: row;
    text-align: left;
  }
}