/* ============================================================
   SPICE SPHERE — Global Corporate CSS
   Aesthetic: Dark Luxury Editorial × Refined Maximalism
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --gold: #fc7c7c;
  --gold-light: #E8B96A;
  --gold-pale: #F5E8CC;
  --gold-deep: #9A6F28;
  --burgundy: #6B1A1A;
  --burgundy-deep: #3A0D0D;
  --cream: #FAF6EE;
  --cream-mid: #F0E9DC;
  --cream-dark: #E8DDD0;
  --charcoal: #111113;
  --charcoal-mid: #1E1E21;
  --charcoal-soft: #2A2A2E;
  --charcoal-warm: #242220;
  --text: #1E1C1A;
  --text-muted: #6B6660;
  --text-light: #A09890;
  --white: #FFFFFF;
  --off-white: #F8F5F0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.22);
  --shadow-glow: 0 0 60px rgba(200, 150, 62, 0.18);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: normal;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(200, 150, 62, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out), width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.3s, opacity 0.3s;
}

.cursor-dot.hover {
  width: 12px;
  height: 12px;
  background: var(--gold-light);
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: rgba(200, 150, 62, 0.4);
}

.cursor-dot.click {
  transform: translate(-50%, -50%) scale(0.5);
}

.cursor-ring.click {
  transform: translate(-50%, -50%) scale(0.8);
}

.cursor-dot.hidden,
.cursor-ring.hidden {
  opacity: 0;
}

/* ── SCROLL PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 4px;
  opacity: 0;
  animation: loaderFadeIn 0.6s 0.2s var(--ease-out) forwards;
}

.loader-logo em {
  font-style: italic;
  color: var(--gold);
}

.loader-tagline {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0;
  animation: loaderFadeIn 0.6s 0.5s var(--ease-out) forwards;
}

.loader-track {
  width: 240px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeIn 0.4s 0.8s forwards;
}

.loader-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  animation: loaderFill 1.4s 1s var(--ease-out) forwards;
  width: 0;
}

@keyframes loaderFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes loaderFill {
  to {
    width: 100%;
  }
}

.page-loader.exit {
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s, transform 0.6s var(--ease-out);
  pointer-events: none;
}

/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-sm {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad {
  padding: 130px 0;
}

/* ── TYPOGRAPHY UTILITIES ── */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.overline::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -1px;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 55px);
  font-weight: 300;
  line-height: 1.08;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.15;
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--white);
}

.text-muted {
  color: var(--text-muted);
}

em.styled {
  font-style: italic;
  color: var(--gold);
}

/* ── BUTTON SYSTEM ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform 0.4s var(--ease-out);
}

.btn:hover::before {
  transform: translateX(110%) skewX(-15deg);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 150, 62, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(200, 150, 62, 0.5);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* ── SCROLL REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal="up"] {
  transform: translateY(50px);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="scale"] {
  transform: scale(0.88);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none !important;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.navbar.solid {
  /* background: rgba(17,17,19,0.95); */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  background: #fff;
  border-radius: 0 0 20px 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgb(0 0 0 / 72%);
  transition: color 0.3s;
  white-space: nowrap;
  position: relative;
}

.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav-links>li>a:hover {
  color: #fc7c7c;
}

.nav-links>li>a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown>a .caret {
  display: inline-block;
  margin-left: 4px;
  font-size: 9px;
  transition: transform 0.3s;
}

.has-dropdown:hover>a .caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(22, 22, 25, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 150, 62, 0.15);
  border-radius: var(--radius-lg);
  padding: 10px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.25s;
}

.dropdown-menu li a .d-icon {
  font-size: 15px;
}

.dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(200, 150, 62, 0.07);
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 6px 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  font-size: 11.5px;
  padding: 11px 24px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal-mid);
  z-index: 998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-menu-links a:hover {
  color: var(--gold);
  padding-left: 12px;
}

.mobile-sub {
  padding-left: 20px;
}

.mobile-sub a {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-sub a:hover {
  color: var(--gold-light);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 1s var(--ease-out);
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  /*  padding-bottom: 100px;
*/
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 10s linear;
  will-change: transform;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.06);
}

/* Dark cinematic overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(10, 8, 6, 0.65) 0%, rgb(20 10 10 / 52%) 50%, rgba(0, 0, 0, 0.1) 100%);
}

/* Animated orb accents */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: 100px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.12) 0%, transparent 70%);
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: 100px;
  right: 300px;
  background: radial-gradient(circle, rgba(107, 26, 26, 0.15) 0%, transparent 70%);
  animation-delay: -3s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-slide-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  display: block;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 8px;
  border: 1px solid rgba(200, 150, 62, 0.3);
  border-radius: 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fc7c7c;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  background: rgba(200, 150, 62, 0.05);
}

.hero-tag a {
  color: inherit;
  text-decoration: none;
}

.hero-tag a:hover {
  color: var(--gold);
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 100px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -1.5px;
  max-width: 820px;
  margin-bottom: 28px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-outline {
  -webkit-text-stroke: 1px rgb(255 255 255);
  color: #ffffff2e;
}

.hero-sub {
  font-size: 16px;
  font-weight: 700;
  color: rgb(255 255 255);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 44px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero stagger animation */
.hero-slide .hero-slide-num,
.hero-slide .hero-tag,
.hero-slide .hero-headline,
.hero-slide .hero-sub,
.hero-slide .hero-actions {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.hero-slide.active .hero-slide-num {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.hero-slide.active .hero-tag {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}

.hero-slide.active .hero-headline {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}

.hero-slide.active .hero-sub {
  opacity: 1;
  transform: none;
  transition-delay: 0.55s;
}

.hero-slide.active .hero-actions {
  opacity: 1;
  transform: none;
  transition-delay: 0.7s;
}

/* Hero bottom bar */
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(17, 17, 19, 0.6);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  transition: all 0.4s var(--ease-out);
}

.hero-dot.active {
  background: var(--gold);
  width: 52px;
}

.hero-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.hero-progress-track {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gold);
  transition: width 0.1s linear;
}

.hero-nav-btns {
  display: flex;
  gap: 8px;
}

.hero-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
  border-radius: var(--radius-sm);
}

.hero-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── MARQUEE TICKER ── */
.marquee-section {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
}

.marquee-sep {
  color: var(--charcoal-warm);
  opacity: 0.4;
  font-size: 16px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── ABOUT ── */
.about-section {
  background: var(--cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/dot-grid.svg');
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 80px;
  align-items: center;
}

.about-visuals {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-img-placeholder .img-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2A1010 0%, #6B1A1A 35%, #C8963E 70%, #3A0D0D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-accent {
  position: absolute;
  bottom: -70px;
  right: -24px;
  width: 190px;
  height: 190px;
  border-radius: var(--radius-lg);
  border: 6px solid var(--cream);
  overflow: hidden;
}

.about-img-accent .img-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #C8963E 0%, #9A6F28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.about-badge {
  position: absolute;
  top: -60px;
  left: -20px;
  background: var(--charcoal);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.badge-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.about-content {
  padding-right: 10px;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-cta-wrap {
  margin-top: 36px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
}

.stat-block {
  position: relative;
}

.stat-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--cream-dark);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── SEGMENTS ── */
.segments-section {
  background: var(--charcoal-mid);
  padding: 80px 0;
}

.segments-header {
  text-align: center;
  margin-bottom: 80px;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.seg-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: none;
}

.seg-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
}

.seg-card:hover .seg-bg {
  transform: scale(1.07);
}

.seg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 6, 4, 0.95) 0%,
      rgba(8, 6, 4, 0.55) 45%,
      rgba(8, 6, 4, 0.1) 100%);
  transition: background 0.5s;
}

.seg-card:hover .seg-overlay {
  background: linear-gradient(to top,
      rgba(58, 13, 13, 0.95) 0%,
      rgba(58, 13, 13, 0.6) 50%,
      rgba(58, 13, 13, 0.1) 100%);
}

/* Unique accent stripe per card */
.seg-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  z-index: 5;
}

.seg-card:hover::after {
  transform: scaleX(1);
}

.seg-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 44px;
  z-index: 3;
}

.seg-index {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(200, 150, 62, 0.7);
  margin-bottom: 10px;
  display: block;
}

.seg-icon-ring {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(200, 150, 62, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s;
}

.seg-card:hover .seg-icon-ring {
  background: var(--gold);
  border-color: var(--gold);
}

.seg-name {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.seg-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s;
  opacity: 0;
}

.seg-card:hover .seg-desc {
  max-height: 80px;
  opacity: 1;
}

.seg-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s 0.1s var(--ease-out);
}

.seg-card:hover .seg-cta {
  opacity: 1;
  transform: translateY(0);
}

.seg-cta-line {
  width: 20px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.seg-card:hover .seg-cta-line {
  width: 32px;
}

/* Individual segment backgrounds using real images */
.seg-cafe {
  --seg-img: url('../images/cafe-about-pizza.png');
}

.seg-kulcha {
  --seg-img: url('../images/kulcha-hero.png');
}

.seg-cab {
  --seg-img: url('../images/hero-slide3-cab.jpg');
}

.seg-real {
  --seg-img: url('../images/seg-real-assets.jpg');
}

.seg-cafe .seg-bg,
.seg-kulcha .seg-bg,
.seg-cab .seg-bg,
.seg-real .seg-bg {
  background-image: var(--seg-img);
}

/* Fallback gradient if image fails */
.seg-cafe .seg-bg {
  background-color: #3D1010;
}

.seg-kulcha .seg-bg {
  background-color: #103D10;
}

.seg-cab .seg-bg {
  background-color: #10103D;
}

.seg-real .seg-bg {
  background-color: #3D2E00;
}

/* ── EVENTS ── */
.events-section {
  background: var(--off-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.events-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
}

.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.event-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.event-card:hover .event-img img {
  transform: scale(1.06);
}

.event-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.event-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
}

.event-img-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 40px;
}

.event-body {
  padding: 28px 30px 32px;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.event-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.event-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cream-dark);
}

.event-type {
  font-size: 11px;
  color: var(--text-muted);
}

.event-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 12px;
}

.event-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

.event-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burgundy);
  transition: gap 0.3s;
}

.event-read-more:hover {
  gap: 14px;
}

/* ── JOURNEY ── */
.journey-section {
  background: var(--charcoal-warm);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/pattern-circle.svg');
  background-size: 400px 400px;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.4;
  pointer-events: none;
}

.journey-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(200, 150, 62, 0.3) 30%, rgba(200, 150, 62, 0.3) 70%, transparent);
  left: 50%;
}

/* remove the ::after for mobile */
.journey-header {
  text-align: center;
  margin-bottom: 96px;
}

.timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.timeline-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(200, 150, 62, 0.5) 8%,
      rgba(200, 150, 62, 0.5) 92%,
      transparent 100%);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-left {
  text-align: right;
  padding-right: 44px;
}

.tl-right {
  text-align: left;
  padding-left: 44px;
}

.tl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tl-node {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.tl-node::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(200, 150, 62, 0.3);
}

.tl-node::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(200, 150, 62, 0.12);
}

.tl-year {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 8px 0;
  white-space: nowrap;
}

.tl-content-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: border-color 0.3s, background 0.3s;
}

.tl-content-box:hover {
  border-color: rgba(200, 150, 62, 0.25);
  background: rgba(200, 150, 62, 0.04);
}

.tl-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.tl-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* Alternating layout */
.tl-item:nth-child(even) .tl-left,
.tl-item:nth-child(odd) .tl-right {
  opacity: 1;
}

.tl-item:nth-child(even) .tl-right,
.tl-item:nth-child(odd) .tl-left {
  visibility: visible;
}

/* ── TEAM ── */
.team-section {
  background: var(--cream);
  padding: 80px 0;
}

.team-header {
  text-align: center;
  margin-bottom: 72px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  position: relative;
  text-align: center;
  cursor: none;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 22px;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.team-photo svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-card:hover .team-photo svg {
  transform: scale(1.04);
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.team-card:hover .team-photo-overlay {
  opacity: 1;
}

.team-social {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.3s;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.team-social-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  transition: background 0.3s;
}

.team-social-btn:hover {
  background: var(--gold);
}

.team-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.team-role {
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--burgundy-deep);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 26, 26, 0.3) 0%, transparent 65%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .display-lg {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info>p {
  font-size: 16px;
  color: #fff;
  line-height: 1.85;
  margin-bottom: 48px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon-wrap {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid rgba(200, 150, 62, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  transition: background 0.3s;
}

.contact-item:hover .contact-icon-wrap {
  background: rgba(200, 150, 62, 0.1);
}

.contact-detail h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.contact-detail p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(10px);
}

.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.marquee-item {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgb(0 0 0);
  margin-right: 40px;
}

.marquee-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.marquee-item a:hover {
  color: var(--gold);
}

.form-group label {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200, 150, 62, 0.6);
  background: rgba(200, 150, 62, 0.04);
}

.form-group select option {
  background: #1E1E21;
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 116px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* ── FOOTER ── */
footer {
  background: #0f1c15;
  /* Darker premium background */
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 150, 62, 0.4), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 0;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-contact-list .icon {
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.social-icons-wrapper {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icons-wrapper a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icons-wrapper a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 5px 15px rgba(200, 150, 62, 0.3);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 15px;
  color: rgb(255 255 255);
}

.footer-copy a {
  color: var(--gold);
  /* text-decoration: underline; */
  transition: all 0.3s ease;
}

.footer-copy a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .container {
    padding: 0 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-badge {
    left: 0;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {

  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .seg-card {
    height: 380px;
  }

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

  .events-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .timeline-spine {
    display: none;
  }

  .tl-item {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .tl-left {
    display: none;
  }

  .tl-center {
    flex-direction: row;
    align-items: flex-start;
    padding-top: 32px;
  }

  .tl-right {
    padding-left: 0;
    text-align: left;
  }

  .hero-bar-inner {
    justify-content: space-between;
  }

  .hero-progress {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .section-pad {
    padding: 80px 0;
  }

  .about-section,
  .segments-section,
  .events-section,
  .journey-section,
  .team-section,
  .contact-section {
    padding: 80px 0;
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats .stat-block:last-child {
    border-right: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-slide-bg {
    background-position: 70% center;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-bar-inner {
    padding: 0 20px;
  }
}

/* ── SCROLL TO TOP ── */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(200, 150, 62, 0.4);
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background: #b58535;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.6);
}

@media (max-width: 640px) {
  .scroll-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ── TIMELINE PATTERN ── */
.tl-pattern {
  width: 80px;
  height: 80px;
  margin: auto;
  background-image: radial-gradient(rgba(200, 150, 62, 0.4) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.6;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.tl-item:hover .tl-pattern {
  transform: rotate(15deg) scale(1.1);
}