/* ============================================================
   SAPSAPON - Main Stylesheet
   Stack: Bootstrap 5 + Custom CSS
   ============================================================ */


@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


/* // Variables // */

 @font-face {
    font-family: 'Gilroy-Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Gilroy-Bold'), url('../fonts/Gilroy-Bold.woff') format('woff');
    }
:root {
  --font-heading: 'Gilroy-Bold', serif;
  --font-body:    'DM Sans', sans-serif;

  --clr-white:       #ffffff;
  --clr-black:       #0d0d0d;
  --clr-bg-light:    #f7f6f3;
  --clr-bg-dark:     #1a1a18;
  --clr-bg-darker:   #111110;
  --clr-bg-brown: #261103;
  --clr-txt-light:#42220e;
  --clr-dark-card:   #1e1e1c;
  --clr-gold:        #c9a84c;
  --clr-gold-light:  #e2c97e;
  --clr-gold-dim:    rgba(201,168,76,0.12);
  --clr-blue-brand:  #1a3a6b;
  --clr-text-dark:   linear-gradient(90deg,rgba(248, 220, 120, 1) 0%, rgba(180, 129, 14, 1) 100%);;
  --clr-text-dark-hover: linear-gradient(90deg,rgba(180, 129, 14, 1) 0%, rgba(248, 220, 120, 1) 100%);;
  --clr-text-mid:    #484846;
  --clr-text-muted:  #888884;
  --clr-border:      #e4e2dc;
  --clr-border-dark: rgba(255,255,255,0.07);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.16);
  --shadow-gold: 0 6px 28px rgba(201,168,76,0.28);

  --t: 0.24s ease;
}

/* // 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(--clr-text-dark);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t); }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.sp-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--t);
}
.sp-nav.scrolled { box-shadow: var(--shadow-md); }

.sp-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 1.05rem;
  color: var(--clr-text-dark);
  letter-spacing: -0.01em;
}
.sp-nav .navbar-brand img,
.sp-nav .custom-logo-link .custom-logo {
  max-height: 60px;
  width: auto;
}

.sp-nav .menu-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-mid) !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-pill);
  transition: all var(--t);
}
.sp-nav .menu-item:hover {
  color: var(--clr-text-dark) !important;
  background: var(--clr-bg-light);
}
.btn-nav-primary {
  background: var(--clr-text-dark) !important;
  color: var(--clr-white) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  padding: 8px 22px !important;
  border-radius: var(--radius-pill) !important;
  transition: all var(--t) !important;
  border:none;
}
.btn-nav-primary:hover {
  background: var(--clr-text-dark-hover) !important;
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.sp-hero {
  background: var(--clr-white);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  height:100vh;
  display: flex;
  align-items: center;
  
}
.sp-hero .container{ z-index:991;}
/* Radial glow behind heading */
.sp-hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 68%);
  pointer-events: none;
}
/* Decorative scattered dots */
/* .hero-decor { position: absolute; inset: 0; pointer-events: none; } */
#hero-decor {
    position: absolute;
    left: -30vw;
    top: -30vw;
    overflow: hidden;
    z-index: 1;
    transform-origin: 50% 50%;
    animation: spin 500s linear 0s infinite normal;
    right: -30vw;
    bottom: -30vw;
}
#hero-decor .container {
    z-index:99999;
}
#hero-decor .star {
  position: absolute;
    width: 0.30rem;
    height: 0.30rem;
    background: #333;
    opacity: 0;
    border-radius: 50%;
    animation: glitter 8s ease-in 0s infinite normal;
}
.sp-hero .hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
}
.sp-hero .hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: normal;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--clr-text-dark);
  margin-bottom: 18px;
}
.sp-hero .hero-sub {
      font-size: 1.8rem;
    color: var(--clr-txt-light);
    font-style: italic;
    margin-bottom: 40px;
    opacity: 0.8 !important;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-text-dark);
  color: var(--clr-white);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 13px 34px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  transition: all var(--t);
  border: none;
  cursor: pointer;
}
.btn-hero:hover {
  background: var(--clr-text-dark-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.42);
  color: var(--clr-white);
}

/* ============================================================
   ORIGIN STORY
   ============================================================ */
.sp-origin {
  padding: 104px 0;
  background: var(--clr-white);
  position: relative;
  overflow: hidden;
}
.origin-left-label {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: normal;
  color: var(--clr-black);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.origin-right-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 16px;
  line-height: 1.45;
}
.origin-body {
  font-size: 1rem;
  color: var(--clr-black);
  line-height: 1.75;
  margin-bottom: 12px;
}
.origin-pain-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}
.origin-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-text-mid);
}
.origin-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  flex-shrink: 0;
}
/* Watermark text */
.origin-watermark {
  position: absolute;
    top:0;
    left: 50%;
    opacity: 0.04;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    margin-left: -230px;
    width:460px
}

/* ============================================================
   EVOLUTION (dark)
   ============================================================ */
.sp-evolution {
  background: var(--clr-bg-brown);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
.evolution-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 10px;
}
.evolution-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.3;
  margin-bottom: 24px;
}
.evolution-body {
  font-size: 1rem;
  color:#fff;
  line-height: 1.78;
  margin-bottom: 12px;
}
.evolution-body  strong {
  color: var(--clr-gold);
}
.evolution-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.evolution-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.evolution-img-wrap:hover img { transform: scale(1.04); }
.evolution-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,107,0.35) 0%, transparent 60%);
}

/* ============================================================
   WHAT WE STAND FOR
   ============================================================ */
.sp-stand {
  padding: 104px 0;
  background: var(--clr-white);
}
.sp-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: normal;
  color: var(--clr-black);
  letter-spacing: -0.025em;
  text-align: center;

}

.sp-section-title.echosystem-wrap {
    position:relative;
  bottom:-60px;  
}
.sp-section-title + .divider-gold {
  margin-top: 14px;
}
.divider-gold {
  width: 44px;
  height: 3px;
  background: var(--clr-gold);
  border-radius: 2px;
  margin: 0 auto;
}
.stand-card {
  padding: 36px 24px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  text-align: center;
  height: 100%;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.stand-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.stand-card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 8px 32px rgba(201,168,76,0.10);
  transform: translateY(-5px);
}
.stand-card:hover::after { transform: scaleX(1); }
.stand-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stand-icon rect {
    fill: #be8e1d;
        stroke: #be8e1d;
}
.stand-icon path {
    stroke: #000;
}
.stand-icon circle:first-child {
     stroke: #be8e1d;
}
.stand-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 4px;
}
.stand-card-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-gold);
  margin-bottom: 12px;
}
.stand-card-body {
  font-size: 1rem;
  color: var(--clr-black);
  line-height: 1.72;
}

/* ============================================================
   CORE BELIEF (dark)
   ============================================================ */
.sp-belief {
  background: var(--clr-bg-darker);
  padding: 104px 0;
}
.belief-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.belief-label {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: normal;
  color: var(--clr-gold);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.belief-right-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.35;
  margin-bottom: 20px;
}

.sp-belief p {
    font-size: 1rem;
    color: var(--clr-white);
    line-height: 1.72;
    margin-bottom: 0;
}
.belief-point {
 display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}
 
.belief-point-dot {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.belief-point-dot svg { width: 11px; height: 11px; color: var(--clr-gold); }
.belief-point-text {
   background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-pill);
    padding: 7px 18px 7px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--t);
    cursor: default;
    position:relative;
}

.belief-point-text::before {
       content: "";
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    position: absolute;
    top: 50%;
    margin-top: -3px;
    left: 10px;
}


.belief-point-text:hover {    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--clr-gold-light);
}

.belief-point-text:hover:before {
    background: var(--clr-gold);
}

/* ============================================================
   WHY SEPARATE BRANDS
   ============================================================ */
.sp-brands {
  padding: 104px 0 40px;
  background: var(--clr-white);
}
.brands-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  height: 100%;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.brands-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  opacity: 0;
  transition: opacity var(--t);
}
.brands-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.brands-card:hover::before { opacity: 1; }
.brands-icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  transition: all var(--t);
}
.brands-card:hover .brands-icon-wrap {
  background: var(--clr-gold-dim);
  border-color: rgba(201,168,76,0.3);
}
.brands-icon-wrap svg { width: 26px; height: 26px; transition: color var(--t); }
.brands-card:hover .brands-icon-wrap svg { color: var(--clr-gold) !important; }
.brands-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
}
.brands-card-body {
  font-size: 1rem;
  color: var(--clr-black);
  line-height: 1.72;
}

/* ============================================================
   DDEFINITION FEATURE CARD
   ============================================================ */
.sp-ddef {
  padding: 0 0 104px;
  background: var(--clr-white);
}
.ddef-card {
  background: var(--clr-bg-darker);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
/* .ddef-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
} */
.ddef-content {
  padding: 40px 20px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ddef-content.ddef-content-1 {
   padding: 0 52px 56px;
}
.ddef-content.ddef-right-content {
   padding: 0 40px 40px 0;
}
.ddef-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size:1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid rgba(201,168,76,0.28);
  background: rgba(201,168,76,0.08);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  width: fit-content;
}
.ddef-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: normal;
  color: var(--clr-white);
  line-height: 1.3;
  margin-bottom: 8px;
}
.ddef-section-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:var(--clr-white);
  margin: 18px 0 6px;
}
.ddef-body {
  font-size: 1rem;
  color: var(--clr-white);
  line-height: 1.72;
  margin-bottom:0;
}
.ddef-body li {
    position: relative;
    padding-left: 10px;
}
.ddef-body li:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    margin-top: -2px;
    left: 0;
}
.ddef-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.ddef-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: all var(--t);
  cursor: default;
}
.ddef-tag:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  color: var(--clr-gold-light);
}
.ddef-image {
  position: relative;
  overflow: hidden;
  
}
.ddef-image img {
    width: 30%;
    height: 30%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.5s ease;
    margin: 20px 0 0 auto;
}
.ddef-card:hover .ddef-image img { transform: scale(1.04); }
.ddef-image.PropTech img {
    width: 200px;
    margin-top: 54px;
}
.ddef-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--clr-bg-darker) 0%, transparent 45%);
}

.ddef-image.Airport.Mobility.Platform img {
    max-width: 200px;
    width: 100%;
    margin-top: 57px;
    mix-blend-mode: plus-lighter;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.sp-timeline {
  padding: 104px 0;
  background: var(--clr-bg-light);
}
.timeline-intro-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}
.timeline-intro-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: normal;
  color: var(--clr-text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.timeline-track {
  position: relative;
  padding-left: 36px;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-gold) 0%, rgba(201,168,76,0.1) 100%);
}
.tl-item {
  position: relative;
  margin-bottom: 52px;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -42px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-gold);
  border: 3px solid var(--clr-bg-light);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.22);
}
.tl-year {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: normal;
  color: var(--clr-gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}
.tl-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.tl-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.28);
  transform: translateX(5px);
}
.tl-card-body {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.72;
  margin-bottom:0;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.sp-philosophy {
  padding: 104px 0;
  background: var(--clr-black);
}
.sp-philosophy .container {
  max-width: 800px;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}
.phil-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  font-size: 0.9rem;
  line-height: 1.68;
  font-weight: 500;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.phil-card:hover { transform: translateY(-4px); }
.phil-card.dark {
  background: var(--clr-bg-dark);
  color: rgba(255,255,255,0.7);
}
.phil-card.mid {
  background: var(--clr-bg-dark);
  color: rgba(255,255,255,0.7);
}
.phil-card.light {
  background: var(--clr-bg-light);
  color: var(--clr-text-mid);
  border: 1px solid var(--clr-border);
}
.phil-card.gold-tint {
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.03) 100%);
  color: var(--clr-text-mid);
  border: 1px solid rgba(201,168,76,0.18);
  text-align: center;
}
.phil-card-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:var(--clr-gold);
  opacity: 1;
  margin-bottom: 10px;
}
.phil-card-text {
  font-size: 1rem;
  line-height: 1.68;
  color: var(--clr-white);
  margin-bottom: 0;
}

/* ============================================================
   CTA / BOTTOM SECTION
   ============================================================ */
.sp-cta {
  padding: 80px 0 72px;
  background: var(--clr-bg-light);
  text-align: center;
}
.sp-cta p {
        font-size: 1.2rem;
}
.cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: normal;
  color: var(--clr-text-dark);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.sp-footer {
  background: var(--clr-bg-darker);
  padding: 80px 0 36px;
  color: rgba(255,255,255,0.5);
}
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: normal;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.footer-logo-name img {
    max-width: 60px;
}
.footer-logo-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  max-width: 220px;
}
.footer-col-head {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.footer-link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 10px;
  transition: color var(--t);
}
.footer-link:hover { color: var(--clr-gold-light); }
.footer-brand-item {
  margin-bottom: 16px;
}
.footer-brand-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2px;
}
.footer-brand-item-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.32);
}
.footer-address {
    font-size: 0.85rem;
    margin-top:60px;
}
.footer-divider {
  border-color: rgba(255,255,255,0.06);
  margin: 52px 0 28px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  transition: all var(--t);
  text-decoration: none;
}
.footer-social-icon:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-up { opacity: 0; animation: fadeUp 0.72s ease forwards; }
.d-1 { animation-delay: 0.05s; }
.d-2 { animation-delay: 0.15s; }
.d-3 { animation-delay: 0.25s; }
.d-4 { animation-delay: 0.35s; }
.d-5 { animation-delay: 0.45s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .sp-hero   { padding: 80px 0 64px; }
  .sp-origin, .sp-evolution, .sp-stand,
  .sp-belief, .sp-brands, .sp-timeline,
  .sp-philosophy { padding: 72px 0; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .sp-hero { padding: 64px 0 52px; }
  .origin-watermark { display: none; }
 
  .ddef-image { min-height: 260px; }
  .ddef-image-overlay {
    background: linear-gradient(to bottom, var(--clr-bg-darker) 0%, transparent 40%);
  }
  .ddef-content { padding: 36px 28px; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


@keyframes glitter {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  25% {
    transform: scale(1.6);
    opacity: 1;
  }

  50% {
    transform: scale(0.8);
    opacity: 0;
  }

  75% {
    transform: scale(1.6);
    opacity: 1;
  }

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


/* Inner Page */
.contain_wapper {
    padding-bottom: 100px;
}
.page-title.section-title {
    padding: 100px 0;
    background: var(--clr-bg-brown);
}
.page-title.section-title {
        color: var(--clr-white);
    text-align: center;
    margin-bottom: 40px;
}
    


:root {
      --sp-nav-h: 100px;
    }
    @media (max-width: 991px) {
      :root {
        --sp-nav-h: 66px;
      }
    }

    .card-stack-wrapper {
      position: relative;
      min-height: 100vh;
      margin-top: 0;
    }

 
    .card-container {
      position: relative;
      top: 0;
      height: min(100dvh, 100svh, 100vh);
      min-height: 0;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: clamp(0.25rem, 2vh, 1.25rem);
      padding-bottom: 0.25rem;
      box-sizing: border-box;
      overflow: hidden;
    }
 
    .card-wrapper {
      position: absolute;
      top: 40px;
      left: 0;
      right: 0;
      margin: auto;
      width: 100%;
      max-width: 1100px;
      padding: 0;
      box-sizing: border-box;
    }
    #ddefinition .card-wrapper {
      top: var(--sp-nav-h);
    }
 
    .inner-card {
      height: min(90vh, calc(100vh - 3.5rem - var(--sp-nav-h)));
      height: min(90dvh, calc(100dvh - 3.25rem - var(--sp-nav-h)));
      overflow-y: auto;
      padding: 0;
      border-radius: 20px;
      background: #111;
      color: #fff;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }
 
    .inner-card::-webkit-scrollbar {
      width: 6px;
    }

    .inner-card::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 10px;
    }
 
     
 
    @media (max-width: 768px) {
      #brands.sp-brands {
        padding: 72px 0 0.75rem;
      }

      .inner-card {
         height: min(86vh, calc(100vh - 2.5rem - var(--sp-nav-h)));
        height: min(86dvh, calc(100dvh - 2.5rem - var(--sp-nav-h)));
        padding: 20px;
      }

      .inner-card h2 {
        font-size: 22px;
      }

      .inner-card p {
        font-size: 14px;
      }
    }
