/* ==========================================================================
   Fruffee — Premium Fruit Café Brand Stylesheet
   ========================================================================== */

/* --- Design Tokens (CSS Custom Properties) --- */
:root {
  /* Colors */
  --bg: #FFF8F0;
  --surface: #FFFFFF;
  --primary: #E85D3A;
  --primary-hover: #D14E2D;
  --secondary: #2D5016;
  --secondary-light: #3A6B1E;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: #999999;
  --border: #E8E0D8;
  --border-light: #F0E8E0;

  /* Fruit accent colors */
  --strawberry: #DC2626;
  --citrus: #F59E0B;
  --grape: #7C3AED;
  --mango: #EA580C;
  --melon: #059669;
  --blueberry: #4338CA;

  /* Typography scale (modular) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  /* Spacing (4px grid) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 72px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.05);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  font-size: var(--text-base);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", "Noto Serif KR", Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

.font-display {
  font-family: "DM Serif Display", "Playfair Display", Georgia, serif;
}

.font-body {
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-fast) ease,
              background var(--duration-fast) ease;
}

.nav.scrolled {
  border-bottom-color: var(--border-light);
  background: rgba(255, 248, 240, 0.95);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-logo svg {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--duration-fast) ease;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-5);
  background: var(--primary);
  color: white !important;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background var(--duration-fast) ease,
              transform var(--duration-fast) var(--ease-out);
}

.nav-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-out);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-10);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: "Playfair Display", serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text);
  transition: color var(--duration-fast) ease;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .nav-cta {
  font-family: "Pretendard Variable", sans-serif;
  font-size: var(--text-lg);
  padding: var(--sp-3) var(--sp-8);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--sp-24) var(--sp-6) var(--sp-16);
  background: linear-gradient(175deg, #FFF8F0 0%, #FFF0E0 40%, #FFECD4 100%);
}

.hero-bg-shapes {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}

.hero-shape-1 {
  width: 400px; height: 400px;
  background: var(--primary);
  top: -100px; right: -50px;
  animation: float1 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 300px; height: 300px;
  background: var(--citrus);
  bottom: -80px; left: -40px;
  animation: float2 18s ease-in-out infinite;
}

.hero-shape-3 {
  width: 200px; height: 200px;
  background: var(--melon);
  top: 40%; left: 60%;
  animation: float3 22s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, -25px) scale(1.1); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-logo {
  margin-bottom: var(--sp-8);
}

.hero-logo svg {
  height: 80px;
  width: auto;
  margin: 0 auto;
}

.hero-tagline {
  font-family: "Playfair Display", "Noto Serif KR", serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--sp-4);
  color: var(--text);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--sp-10);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 600;
  transition: all var(--duration-fast) var(--ease-out);
  letter-spacing: 0.01em;
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 58, 0.25);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: var(--surface);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Decorative fruit icons floating in hero */
.hero-fruit-deco {
  position: absolute;
  font-size: 2rem;
  opacity: 0.2;
  pointer-events: none;
  animation: fruitFloat 15s ease-in-out infinite;
}

.hero-fruit-deco:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.hero-fruit-deco:nth-child(2) { top: 25%; right: 10%; animation-delay: -3s; font-size: 2.5rem; }
.hero-fruit-deco:nth-child(3) { bottom: 20%; left: 12%; animation-delay: -6s; font-size: 1.8rem; }
.hero-fruit-deco:nth-child(4) { bottom: 30%; right: 8%; animation-delay: -9s; }
.hero-fruit-deco:nth-child(5) { top: 50%; left: 4%; animation-delay: -12s; font-size: 1.6rem; }

@keyframes fruitFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(5deg); }
  75% { transform: translateY(8px) rotate(-3deg); }
}

@media (max-width: 768px) {
  .hero-tagline { font-size: var(--text-3xl); }
  .hero-sub { font-size: var(--text-base); }
  .hero-logo svg { height: 60px; }
  .hero-fruit-deco { display: none; }
}

/* --- Section Common --- */
.section {
  padding: var(--sp-24) var(--sp-6);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.section-label {
  font-family: "DM Serif Display", serif;
  font-size: var(--text-sm);
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  display: block;
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--sp-4);
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .section-title { font-size: var(--text-4xl); }
}

/* --- Brand Story Section --- */
.story {
  background: var(--bg);
}

.story-narrative {
  max-width: var(--max-width-narrow);
  margin: 0 auto var(--sp-16);
  text-align: center;
}

.story-narrative p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: var(--sp-4);
}

.story-narrative p:first-child {
  font-family: "Playfair Display", serif;
  font-size: var(--text-xl);
  color: var(--text);
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  max-width: 900px;
  margin: 0 auto;
}

.value-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

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

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-5);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.value-icon-fresh {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.value-icon-premium {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
}

.value-icon-honest {
  background: linear-gradient(135deg, #FBE9E7, #FFCCBC);
}

.value-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-2);
}

.value-card .value-en {
  font-family: "DM Serif Display", serif;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}

/* --- Fruit Cards Section --- */
.fruit-section {
  background: var(--surface);
}

.fruit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

@media (min-width: 1024px) {
  .fruit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fruit-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.fruit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.fruit-card-bg {
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.fruit-card-emoji {
  font-size: 3rem;
  margin-bottom: var(--sp-4);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.fruit-card-name {
  font-family: "Playfair Display", serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-1);
}

.fruit-card-name-en {
  font-family: "DM Serif Display", serif;
  font-size: var(--text-sm);
  opacity: 0.7;
  margin-bottom: var(--sp-4);
}

.fruit-card-info {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.fruit-info-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
}

.fruit-info-label {
  font-weight: 600;
  opacity: 0.8;
  min-width: 48px;
}

.fruit-info-value {
  opacity: 0.9;
}

/* Fruit color themes */
.fruit-strawberry .fruit-card-bg {
  background: linear-gradient(160deg, #FEE2E2, #FECACA);
  color: #7F1D1D;
}
.fruit-citrus .fruit-card-bg {
  background: linear-gradient(160deg, #FEF3C7, #FDE68A);
  color: #78350F;
}
.fruit-mango .fruit-card-bg {
  background: linear-gradient(160deg, #FFEDD5, #FED7AA);
  color: #7C2D12;
}
.fruit-muscat .fruit-card-bg {
  background: linear-gradient(160deg, #ECFDF5, #A7F3D0);
  color: #064E3B;
}
.fruit-blueberry .fruit-card-bg {
  background: linear-gradient(160deg, #EDE9FE, #C4B5FD);
  color: #3730A3;
}
.fruit-hallabong .fruit-card-bg {
  background: linear-gradient(160deg, #FFF7ED, #FDBA74);
  color: #9A3412;
}

@media (max-width: 768px) {
  .fruit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }
  .fruit-card-bg {
    padding: var(--sp-5) var(--sp-4) var(--sp-4);
    min-height: 240px;
  }
  .fruit-card-emoji { font-size: 2.2rem; }
  .fruit-card-name { font-size: var(--text-xl); }
}

@media (max-width: 480px) {
  .fruit-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Menu Section --- */
.menu-section {
  background: var(--bg);
}

.menu-grid {
  display: grid;
  gap: var(--sp-6);
  max-width: 900px;
  margin: 0 auto;
}

.menu-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  border: 1px solid var(--border-light);
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

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

.menu-card-number {
  font-family: "DM Serif Display", serif;
  font-size: var(--text-4xl);
  color: var(--border);
  line-height: 1;
  min-width: 48px;
  font-weight: 400;
}

.menu-card-content {
  flex: 1;
}

.menu-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-2);
  flex-wrap: wrap;
}

.menu-card-name {
  font-family: "Playfair Display", serif;
  font-size: var(--text-xl);
  font-weight: 700;
}

.menu-card-price {
  font-family: "DM Serif Display", serif;
  font-size: var(--text-lg);
  color: var(--primary);
  white-space: nowrap;
}

.menu-card-name-en {
  font-family: "DM Serif Display", serif;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.menu-card-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.menu-card-tags {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  flex-wrap: wrap;
}

.menu-tag {
  font-size: var(--text-xs);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  background: var(--bg);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.menu-collab {
  text-align: center;
  margin-top: var(--sp-10);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.menu-collab span {
  font-family: "DM Serif Display", serif;
  color: var(--secondary);
  font-style: italic;
}

@media (max-width: 768px) {
  .menu-card {
    flex-direction: column;
    gap: var(--sp-3);
    padding: var(--sp-6);
  }
  .menu-card-number { font-size: var(--text-2xl); }
}

/* --- Store Info Section --- */
.store-section {
  background: var(--surface);
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.store-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.store-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.store-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.store-info-text h4 {
  font-family: "Pretendard Variable", sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--sp-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.store-info-text p {
  font-size: var(--text-base);
  color: var(--text);
  line-height: 1.6;
}

.map-placeholder {
  background: linear-gradient(145deg, #F5F0E8, #EDE8E0);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--border-light) 39px, var(--border-light) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--border-light) 39px, var(--border-light) 40px);
  opacity: 0.5;
}

.map-pin {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  margin-bottom: var(--sp-3);
}

.map-label {
  position: relative;
  z-index: 1;
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-align: center;
  padding: 0 var(--sp-4);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: var(--sp-2) var(--sp-4);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .store-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .map-placeholder { height: 260px; }
}

/* --- Footer --- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-16) var(--sp-6) var(--sp-8);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--sp-8);
}

.footer-brand svg {
  height: 40px;
  width: auto;
  margin-bottom: var(--sp-4);
}

.footer-brand p {
  font-size: var(--text-sm);
  max-width: 300px;
  line-height: 1.7;
}

.footer-links-group h4 {
  font-family: "DM Serif Display", serif;
  font-size: var(--text-sm);
  color: white;
  margin-bottom: var(--sp-4);
  letter-spacing: 0.05em;
}

.footer-links-group a {
  display: block;
  font-size: var(--text-sm);
  padding: var(--sp-1) 0;
  transition: color var(--duration-fast) ease;
}

.footer-links-group a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  transition: all var(--duration-fast) ease;
}

.footer-social a:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer-bottom p,
.footer-bottom a {
  font-size: var(--text-xs);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--duration-fast) ease;
}

.footer-bottom a:hover {
  color: white;
}

.footer-pplx {
  color: rgba(255,255,255,0.4);
}

.footer-pplx:hover {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: var(--sp-8);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Divider --- */
.section-divider {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 1px;
  background: var(--border-light);
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
