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

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

/* // Variables // */
:root {
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --clr-white:       #ffffff;
  --clr-black:       #0d0d0d;
  --clr-bg-light:    #f7f6f3;
  --clr-bg-dark:     #1a1a18;
  --clr-bg-darker:   #111110;
  --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:   #1a1a18;
  --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: 800;
  font-size: 1.05rem;
  color: var(--clr-text-dark);
  letter-spacing: -0.01em;
}
.sp-nav .navbar-brand img {
  height: 34px;
  width: auto;
}

.sp-nav .nav-link {
  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 .nav-link: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;
}
.btn-nav-primary:hover {
  background: var(--clr-blue-brand) !important;
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.sp-hero {
  background: var(--clr-white);
  padding: 104px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* 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 span {
  position: absolute;
  border-radius: 50%;
  background: var(--clr-gold);
}
.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: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--clr-text-dark);
  margin-bottom: 18px;
}
.sp-hero .hero-sub {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  font-style: italic;
  margin-bottom: 40px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-gold);
  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-gold-light);
  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: 800;
  color: var(--clr-blue-brand);
  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: 0.9rem;
  color: var(--clr-text-mid);
  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;
  bottom: -28px;
  left: -10px;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  z-index: 0;
}

/* ============================================================
   EVOLUTION (dark)
   ============================================================ */
.sp-evolution {
  background: var(--clr-bg-dark);
  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: 0.9rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.78;
  margin-bottom: 12px;
}
.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: 800;
  color: var(--clr-text-dark);
  letter-spacing: -0.025em;
  text-align: center;
}
.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-card-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 4px;
}
.stand-card-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-gold);
  margin-bottom: 12px;
}
.stand-card-body {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.68;
}

/* ============================================================
   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: 800;
  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: 36px;
}
.belief-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 14px;
  transition: all var(--t);
}
.belief-point:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.18);
}
.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 {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

/* ============================================================
   WHY SEPARATE BRANDS
   ============================================================ */
.sp-brands {
  padding: 104px 0;
  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: 0.875rem;
  color: var(--clr-text-muted);
  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: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ddef-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  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: 800;
  color: var(--clr-white);
  line-height: 1.3;
  margin-bottom: 8px;
}
.ddef-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 18px 0 6px;
}
.ddef-body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
}
.ddef-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.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;
  min-height: 400px;
}
.ddef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 0.5s ease;
}
.ddef-card:hover .ddef-image img { transform: scale(1.04); }
.ddef-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--clr-bg-darker) 0%, transparent 45%);
}

/* ============================================================
   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: 800;
  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: 800;
  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;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.sp-philosophy {
  padding: 104px 0;
  background: var(--clr-white);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  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);
}
.phil-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 10px;
}
.phil-card-text {
  font-size: 0.875rem;
  line-height: 1.68;
}

/* ============================================================
   CTA / BOTTOM SECTION
   ============================================================ */
.sp-cta {
  padding: 80px 0 72px;
  background: var(--clr-bg-light);
  text-align: center;
}
.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: 800;
  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: 800;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.footer-logo-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  max-width: 220px;
}
.footer-col-head {
  font-size: 0.68rem;
  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.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2px;
}
.footer-brand-item-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
}
.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-inner { grid-template-columns: 1fr; }
  .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; }
}
