/* ==========================================================================
   PUCHAKA — Design System
   Palette: Warm Saffron (appetizing, Indian food identity)
   Typography: Plus Jakarta Sans (clean, modern, premium)
   ========================================================================== */

/* --- Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0F0A06;
  --bg-secondary: #1A1410;
  --bg-card: #201912;
  --bg-card-hover: #2A2118;
  --bg-elevated: #251D14;

  --accent: #FF6B35;
  --accent-hover: #FF8554;
  --accent-glow: rgba(255, 107, 53, 0.15);
  --gold: #FFC857;
  --gold-muted: rgba(255, 200, 87, 0.12);

  --text-primary: #F5F0EB;
  --text-secondary: #A89888;
  --text-muted: #6B5D50;

  --border: rgba(168, 152, 136, 0.1);
  --border-hover: rgba(168, 152, 136, 0.2);

  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-display: clamp(3rem, 7vw, 6rem);
  --text-h1: clamp(2.25rem, 5vw, 4rem);
  --text-h2: clamp(1.75rem, 3.5vw, 2.75rem);
  --text-h3: clamp(1.125rem, 2vw, 1.375rem);
  --text-body: clamp(0.9375rem, 1.2vw, 1.0625rem);
  --text-small: clamp(0.8125rem, 1vw, 0.875rem);
  --text-caption: 0.75rem;

  /* Spacing (8px grid) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  /* Layout */
  --container: 1200px;
  --nav-height: 72px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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;
}

/* --- Film Grain --- */
.grain::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section {
  padding: var(--space-7) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-8) 0;
  }
}

.section__label {
  display: inline-block;
  font-size: var(--text-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.section__title {
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  max-width: 640px;
}

.section__subtitle {
  font-size: var(--text-body);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-6);
}

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

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 12px 28px;
  font-size: var(--text-small);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

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

.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn--ghost:hover {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:active {
  transform: scale(0.98);
}

.btn--small {
  padding: 8px 20px;
  font-size: var(--text-caption);
  min-height: 40px;
}

.btn--large {
  padding: 16px 36px;
  font-size: var(--text-body);
  min-height: 56px;
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(15, 10, 6, 0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border);
  transition: background var(--duration-normal) var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(15, 10, 6, 0.95);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--text-primary);
}

.nav__logo-icon {
  color: var(--accent);
  font-size: 0.5rem;
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  position: relative;
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link--cta {
  color: var(--bg-primary);
  background: var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav__link--cta:hover {
  color: #fff;
  background: var(--accent-hover);
}

/* Mobile Toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

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

.nav__toggle.is-active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav__toggle.is-active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
.nav__links.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  padding: var(--space-5);
  gap: var(--space-3);
  align-items: flex-start;
  animation: menuSlide var(--duration-normal) var(--ease-out);
}

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

.nav__links.is-open .nav__link {
  font-size: 1.25rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.hero__content {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-6) var(--space-3);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  width: 100%;
}

@media (min-width: 960px) {
  .hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-6) var(--space-3);
    padding-top: calc(var(--nav-height) + var(--space-6));
    gap: var(--space-6);
    min-height: 100vh;
    align-items: center;
  }
  .hero__content {
    padding: 0;
    display: block;
  }
}

.hero__badge {
  display: inline-block;
  font-size: var(--text-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: var(--gold-muted);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: var(--space-3);
}

.hero__title {
  font-size: var(--text-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.hero__title--accent {
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-4);
}

.hero__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.hero__stats {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-caption);
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Visual */
.hero__visual {
  display: none;
  position: relative;
}

@media (min-width: 960px) {
  .hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero__image-wrapper {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  position: relative;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero__float {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__float--1 {
  top: 15%;
  left: -10%;
  animation: float 4s ease-in-out infinite;
}

.hero__float--2 {
  bottom: 15%;
  right: -5%;
  animation: float 4s ease-in-out infinite 1s;
}

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

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee {
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-secondary);
}

.marquee__track {
  display: flex;
  gap: var(--space-4);
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee__track span {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marquee__dot {
  color: var(--accent) !important;
  opacity: 0.5;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-7);
  }
}

.about__desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
  max-width: 540px;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-top: var(--space-4);
}

.about__badge {
  font-size: var(--text-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  color: var(--text-secondary);
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__image {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* ==========================================================================
   PRODUCTS
   ========================================================================== */

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}

.product-card--featured {
  border-color: var(--accent);
  position: relative;
}

.product-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-glow);
  pointer-events: none;
  z-index: 0;
}

.product-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}


.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bg-primary);
  color: var(--accent);
  border: 1px solid var(--border);
}

.product-card__tag--gold {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.product-card__body {
  padding: var(--space-3);
  position: relative;
  z-index: 1;
}

.product-card__title {
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.product-card__desc {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
}

.product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */

.gallery {
  background: var(--bg-secondary);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

@media (min-width: 640px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
  .gallery__item--large {
    grid-row: 1 / 3;
  }
}

@media (min-width: 960px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
  .gallery__item--large {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  min-height: 200px;
}

@media (min-width: 640px) {
  .gallery__item {
    min-height: 240px;
  }
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* ==========================================================================
   MAP
   ========================================================================== */

.map-section {
  width: 100%;
  line-height: 0;
}

.map-section iframe {
  width: 100%;
  min-height: 280px;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.how {
  background: var(--bg-secondary);
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

@media (min-width: 768px) {
  .how__steps {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-3);
  }
}

.how__step {
  flex: 1;
  padding: var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-fast);
}

.how__step:hover {
  border-color: var(--border-hover);
}

.how__step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.how__step-title {
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.how__step-desc {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.6;
}

.how__step-line {
  display: none;
}

@media (min-width: 768px) {
  .how__step-line {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--border-hover);
    margin-top: 80px;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   WHY PUCHAKA
   ========================================================================== */

.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

@media (min-width: 640px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.why__card {
  padding: var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.why__card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card);
}

.why__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.why__icon svg {
  width: 100%;
  height: 100%;
}

.why__title {
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.why__desc {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */

.reviews {
  background: var(--bg-secondary);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: border-color var(--duration-fast);
}

.review-card:hover {
  border-color: var(--border-hover);
}

.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-2);
}

.review-card__text {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-3);
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-small);
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: var(--text-small);
}

.review-card__location {
  font-size: var(--text-caption);
  color: var(--text-muted);
}

/* ==========================================================================
   SHIPPING
   ========================================================================== */

.shipping__inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .shipping__inner {
    grid-template-columns: 1.2fr 0.8fr;
    padding: var(--space-6);
    gap: var(--space-6);
    align-items: center;
  }
}

.shipping__title {
  font-size: var(--text-h2);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.shipping__desc {
  font-size: var(--text-body);
  color: var(--text-secondary);
}

.shipping__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.shipping__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}

.shipping__detail:last-child {
  border-bottom: none;
}

.shipping__detail-label {
  font-size: var(--text-small);
  color: var(--text-muted);
}

.shipping__detail-value {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--text-primary);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .contact__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-7);
    align-items: center;
  }
}

.contact__desc {
  font-size: var(--text-body);
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: var(--space-4);
}

.contact__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.contact__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.contact__card-title {
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border);
}

.contact__card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-1) 0;
}

.contact__card-label {
  font-size: var(--text-small);
  color: var(--text-muted);
}

.contact__card-value {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--text-primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  padding: var(--space-6) 0 var(--space-4);
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-6);
  }
}

.footer__logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}

.footer__tagline {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.footer__copyright {
  font-size: var(--text-caption);
  color: var(--text-muted);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

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

.footer__col-title {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.footer__link {
  display: block;
  font-size: var(--text-small);
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: var(--text-secondary);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

/* Selection */
::selection {
  background: var(--accent);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
