/* ==========================================================================
   KIMONOCU.COM — Haute-Couture Showstopping Visual Experience
   Palette: Velvet Bordeaux, Imperial Wine, Molten Gold & Aurora Glows
   Motion: Flowing Silk Waves, Ambient Orbs, Shimmer Metals & 3D Glass
   ========================================================================== */

:root {
  /* Color System */
  --bg-primary: #0e0104;
  --bg-secondary: #170208;
  
  --bordeaux-darkest: #1f030a;
  --bordeaux-dark: #380612;
  --bordeaux-main: #6b0c23;
  --bordeaux-vibrant: #961334;
  --bordeaux-neon: #c81d48;
  --bordeaux-glow: rgba(180, 20, 60, 0.45);

  --gold-primary: #d4af37;
  --gold-light: #fbeac0;
  --gold-vibrant: #eac56c;
  --gold-muted: rgba(212, 175, 55, 0.7);
  --gold-border: rgba(212, 175, 55, 0.28);
  --gold-glow: rgba(212, 175, 55, 0.45);

  --text-primary: #fdfaf6;
  --text-secondary: #e5d8cb;
  --text-muted: #ab958d;

  --card-bg: rgba(35, 4, 12, 0.58);
  --card-border: rgba(212, 175, 55, 0.18);
  --card-blur: 20px;

  /* Typography */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-thin-logo: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Physics & Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
}

/* Global Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg-primary);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Ambient Canvas: High-Fidelity Flowing Silk Simulation */
#ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.92;
}

/* Dynamic Aurora Orbs (Breathing & Shifting Silk Lights) */
.aurora-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  filter: blur(80px);
  opacity: 0.85;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  animation: floatOrb 18s infinite alternate ease-in-out;
}

.orb-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, var(--bordeaux-vibrant) 0%, rgba(107, 12, 35, 0.4) 60%, transparent 80%);
  top: -150px;
  left: 20%;
  animation-duration: 22s;
}

.orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(200, 29, 72, 0.45) 0%, rgba(56, 6, 18, 0.5) 60%, transparent 80%);
  bottom: 5%;
  right: -100px;
  animation-duration: 19s;
  animation-delay: -5s;
}

.orb-3 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(107, 12, 35, 0.3) 50%, transparent 75%);
  top: 40%;
  left: -120px;
  animation-duration: 25s;
  animation-delay: -10s;
}

/* Interactive Cursor Spotlight Glow */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 29, 72, 0.12) 0%, rgba(212, 175, 55, 0.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  opacity: 0;
}

/* Elegant Grain & Japanese Wave Shimmer Pattern */
.pattern-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 0),
    linear-gradient(180deg, rgba(14, 1, 4, 0.3) 0%, rgba(23, 2, 8, 0.7) 100%);
  background-size: 30px 30px, 100% 100%;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

/* Page Layout with Safe Areas */
.page-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 
    max(3.25rem, env(safe-area-inset-top, 3.25rem)) 
    max(1.5rem, env(safe-area-inset-right, 1.5rem)) 
    max(2.5rem, env(safe-area-inset-bottom, 2.5rem)) 
    max(1.5rem, env(safe-area-inset-left, 1.5rem));
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Site Header */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  animation: revealHeader 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  text-align: center;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

/* Rotating Monogram Ring */
.brand-monogram {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(45, 5, 15, 0.65);
  box-shadow: 0 4px 20px rgba(180, 20, 60, 0.4);
}

.monogram-letter {
  font-family: var(--font-thin-logo);
  font-size: 1.2rem;
  font-weight: 200;
  color: var(--gold-light);
  z-index: 2;
}

.monogram-ring {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold-primary), transparent 40%, var(--bordeaux-neon), var(--gold-primary));
  animation: spinRing 8s linear infinite;
  mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #fff calc(100% - 1.5px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #fff calc(100% - 1.5px));
}

.brand-sub {
  font-family: var(--font-thin-logo);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold-muted);
  text-transform: uppercase;
}

/* Thin Haute-Couture Masthead Logo with Liquid Light Sweep */
.brand-logo {
  text-align: center;
}

.logo-title {
  display: block;
  margin: 0;
  width: 100%;
  text-align: center;
  white-space: nowrap !important;
}

.shimmer-text {
  display: inline-block;
  font-family: var(--font-thin-logo);
  font-size: clamp(2.6rem, 6.8vw, 4.6rem);
  font-weight: 200; /* Crisp Luxury Thin */
  letter-spacing: 0.35em;
  text-transform: uppercase;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal;
  background: linear-gradient(
    90deg, 
    #fdfaf6 0%, 
    #edd5a0 35%, 
    #ffffff 50%, 
    #edd5a0 65%, 
    #fdfaf6 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 6s infinite linear;
  margin-right: -0.35em;
  filter: drop-shadow(0 2px 20px rgba(212, 175, 55, 0.25));
}

.logo-tagline {
  display: block;
  font-family: var(--font-thin-logo);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--gold-primary);
  margin-top: 0.75rem;
  opacity: 0.95;
  margin-right: -0.4em;
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto 0;
  padding: 1.5rem 0 2.5rem;
  width: 100%;
}

/* Announcement Pill with Pulsing Core */
.announcement-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.48rem 1.4rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(107, 12, 35, 0.45) 0%, rgba(35, 4, 12, 0.5) 100%);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 2.2rem;
  box-shadow: 0 0 25px rgba(180, 20, 60, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: floatPill 5s ease-in-out infinite;
}

.pill-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold-primary);
}

.pill-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  animation: ripplePulse 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.pill-text {
  font-family: var(--font-thin-logo);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold-light);
}

/* Hero Heading */
.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.4vw, 3.85rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  max-width: 100%;
  margin-bottom: 1.85rem;
  letter-spacing: -0.015em;
  white-space: nowrap;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.heading-gold {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #fffcf6 0%, #fae6b8 45%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 30px rgba(180, 20, 60, 0.35));
}

.hero-description {
  max-width: 700px;
  color: var(--text-secondary);
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
  font-weight: 300;
  line-height: 1.88;
  margin-bottom: 3.75rem;
  text-wrap: balance;
  animation: fadeInUp 1s ease-out 0.35s both;
}

.hero-description strong {
  color: var(--gold-light);
  font-weight: 400;
}

/* 3 Showstopping Strategic Pillar Cards with 3D Tilt & Specular Shine */
.pillars-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.85rem;
  margin-bottom: 4rem;
  perspective: 1000px; /* For 3D Tilt */
}

.pillar-card {
  position: relative;
  background: linear-gradient(145deg, rgba(45, 6, 16, 0.65) 0%, rgba(20, 2, 7, 0.8) 100%);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(var(--card-blur));
  -webkit-backdrop-filter: blur(var(--card-blur));
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(107, 12, 35, 0.15);
}

/* Highlight Center Card */
.highlighted-card {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(180, 20, 60, 0.3);
}

/* Interactive Cursor-Tracked Card Glow */
.card-glow {
  position: absolute;
  top: var(--glow-y, 50%);
  left: var(--glow-x, 50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(200, 29, 72, 0.15) 50%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover .card-glow {
  opacity: 1;
}

.pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.pillar-icon {
  width: 50px;
  height: 50px;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(150, 19, 52, 0.4) 0%, rgba(56, 6, 18, 0.4) 100%);
  border-radius: 14px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 4px 15px rgba(150, 19, 52, 0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.08) translateZ(15px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
}

.pillar-tag {
  font-family: var(--font-thin-logo);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold-muted);
}

.special-tag {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  line-height: 1.28;
}

.pillar-card p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0.92;
}

.card-edge-glow {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0.4;
}

/* Producers Callout Section with Rotating Neon Shimmer Border */
.producers-callout {
  width: 100%;
  max-width: 860px;
  position: relative;
}

.callout-inner {
  position: relative;
  background: linear-gradient(145deg, rgba(50, 7, 19, 0.85) 0%, rgba(18, 2, 7, 0.95) 100%);
  border-radius: 24px;
  padding: 2.85rem 2.5rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(180, 20, 60, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

/* Infinite Rotating Glowing Border Beam */
.shimmer-border {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg, 
    transparent 0deg, 
    transparent 70deg, 
    rgba(212, 175, 55, 0.6) 90deg, 
    rgba(200, 29, 72, 0.8) 120deg, 
    transparent 150deg, 
    transparent 360deg
  );
  animation: spinBorder 10s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}

.callout-inner > *:not(.shimmer-border) {
  position: relative;
  z-index: 2;
}

.callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-thin-logo);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 0.85rem;
  background: rgba(107, 12, 35, 0.45);
  padding: 0.4rem 1.15rem;
  border-radius: 30px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.badge-sparkle {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
  animation: sparkle 3s infinite ease-in-out;
}

.callout-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.2vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.callout-inner p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Haute-Couture Glowing Button with Light Sweep */
.callout-action-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--bordeaux-vibrant) 0%, var(--bordeaux-main) 100%);
  color: #ffffff;
  border: 1px solid var(--gold-primary);
  min-height: 52px;
  padding: 0.95rem 2.4rem;
  border-radius: 50px;
  font-family: var(--font-thin-logo);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(180, 20, 60, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: buttonShine 4s infinite ease-in-out;
}

.callout-action-btn:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--gold-light);
  box-shadow: 0 12px 35px rgba(200, 29, 72, 0.6), 0 0 30px rgba(212, 175, 55, 0.5);
}

.callout-action-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s ease;
}

.callout-action-btn:hover svg {
  transform: translateX(5px);
}

.callout-action-btn:active {
  transform: scale(0.97);
}

/* Site Footer */
.site-footer {
  margin-top: 4.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeIn 1.2s ease-out;
  width: 100%;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-family: var(--font-thin-logo);
  font-weight: 400;
  letter-spacing: 0.12em;
  min-height: 46px;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(35, 4, 12, 0.65);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.social-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-primary);
  background: rgba(107, 12, 35, 0.65);
  box-shadow: 0 0 20px rgba(180, 20, 60, 0.4);
  transform: translateY(-2px);
}

.social-link:hover svg {
  transform: scale(1.15);
}

.social-link:active {
  transform: scale(0.96);
}

.footer-meta {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0 1rem;
}

/* Toast Message */
.toast {
  position: fixed;
  bottom: max(1.75rem, env(safe-area-inset-bottom, 1.75rem));
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(45, 5, 16, 0.96);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px var(--gold-glow);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  z-index: 999;
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Keyframe Animations
   ========================================================================== */
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 70px) scale(0.95); }
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes textShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes buttonShine {
  0%, 40% { left: -120%; }
  60%, 100% { left: 140%; }
}

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

@keyframes ripplePulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15) rotate(10deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

/* ==========================================================================
   Responsive & Mobile Fine-Tuning
   ========================================================================== */
@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
  }
}

@media (max-width: 640px) {
  .page-wrapper {
    padding: 
      max(2.25rem, env(safe-area-inset-top, 2.25rem)) 
      max(1rem, env(safe-area-inset-right, 1rem)) 
      max(2rem, env(safe-area-inset-bottom, 2rem)) 
      max(1rem, env(safe-area-inset-left, 1rem));
  }

  .site-header {
    margin-bottom: 2.25rem;
    gap: 1rem;
  }

  .shimmer-text {
    font-size: clamp(2.35rem, 10.5vw, 3.4rem);
    letter-spacing: 0.16em;
    margin-right: -0.16em;
    white-space: nowrap !important;
  }

  .logo-tagline {
    font-size: clamp(0.66rem, 2.5vw, 0.76rem);
    letter-spacing: 0.28em;
    margin-right: -0.28em;
  }

  .hero-heading {
    font-size: clamp(1.3rem, 6vw, 2.2rem);
    white-space: nowrap;
    margin-bottom: 1.25rem;
  }

  .hero-description {
    font-size: 0.96rem;
    line-height: 1.78;
    margin-bottom: 2.75rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pillar-card {
    padding: 2rem 1.5rem;
  }

  .callout-inner {
    padding: 2.25rem 1.4rem;
    border-radius: 20px;
  }

  .callout-action-btn {
    width: 100%;
    max-width: 320px;
  }

  .footer-socials {
    flex-direction: column;
    gap: 0.75rem;
  }

  .social-link {
    width: 100%;
    max-width: 320px;
  }
}

/* Extra Small Phones (iPhone SE, Galaxy Fold outer screen <= 380px) */
@media (max-width: 380px) {
  .shimmer-text {
    font-size: clamp(1.85rem, 9vw, 2.4rem) !important;
    letter-spacing: 0.14em !important;
    margin-right: -0.14em !important;
    white-space: nowrap !important;
  }

  .logo-tagline {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    margin-right: -0.22em;
  }
}
