/* ===================================================
   Break n Bite Food Bar & Takeaway — Design System
   =================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --bg-primary: #0C0A09;
  --bg-secondary: #1C1917;
  --bg-card: rgba(28, 25, 23, 0.65);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.08);

  --text-primary: #FAFAF9;
  --text-secondary: #A8A29E;
  --text-muted: #78716C;

  --accent: #F59E0B;
  --accent-hover: #D97706;
  --accent-glow: rgba(245, 158, 11, 0.25);
  --red: #EF4444;
  --green: #22C55E;

  /* Typography */
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 6rem);
  --gap: 1.5rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px var(--accent-glow);

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--ff-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none
}

ul,
ol {
  list-style: none
}

img,
video {
  max-width: 100%;
  display: block
}

button,
input,
textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit
}

button {
  cursor: pointer
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem)
}

.section-pad {
  padding: var(--section-pad)
}

.text-accent {
  color: var(--accent)
}

.text-muted {
  color: var(--text-secondary)
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

.section-label {
  font-family: var(--ff-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-xl);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, .15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}

.btn:hover::after {
  transform: translateX(100%)
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #F97316);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--accent-glow)
}

.btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #000
}

.btn-sm {
  padding: .6rem 1.5rem;
  font-size: .85rem
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  transition: all .4s var(--ease);
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 1rem 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s var(--ease);
}

.navbar.scrolled .nav-logo img {
  height: 80px;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #000;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem
}

.nav-links a {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: .92rem;
  color: var(--text-secondary);
  transition: color .3s var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary)
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

.nav-order {
  margin-left: .5rem
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: all .3s var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5.3px) translateX(5.3px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5.3px) translateX(5.3px)
}

/* Mobile nav */
@media(max-width:768px) {
  .hamburger {
    display: flex
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    background: rgba(12, 10, 9, 0.97);
    backdrop-filter: blur(30px);
    padding: 5rem 2rem 2rem;
    gap: 1.8rem;
    transition: right .4s var(--ease);
    border-left: 1px solid var(--border-glass);
  }

  .nav-links.open {
    right: 0
  }

  .nav-links a {
    font-size: 1.15rem
  }

  .nav-order {
    margin-left: 0;
    margin-top: 1rem
  }
}

/* ---------- Floating Order Button ---------- */
.floating-order {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.8rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent), #F97316);
  color: #000;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 6px 30px rgba(245, 158, 11, .35);
  transition: all .35s var(--ease);
  animation: float-pulse 2.5s ease-in-out infinite;
}

.floating-order:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 45px rgba(245, 158, 11, .5);
}

.floating-order svg {
  width: 20px;
  height: 20px
}

@keyframes float-pulse {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.35);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 9, .4) 0%, rgba(12, 10, 9, .85) 80%, var(--bg-primary) 100%);
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 100px;
  }

  .hero-content {
    order: 2;
    padding-top: 0;
  }

  .hero-image-side {
    order: 1;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-image-side img {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-image-side img {
    max-width: 250px;
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  position: relative;
  padding-top: 2rem;
}

.hero-image-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-side img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.2));
  animation: hero-logo-float 4s ease-in-out infinite;
}

@keyframes hero-logo-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-xl);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  font-size: .82rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 14px;
  height: 14px
}

.hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.stats-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.stat-item {
  text-align: center
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: .85rem;
  color: var(--text-secondary);
  margin-top: .25rem
}

/* ---------- About Preview (Home) ---------- */
.about-preview {
  overflow: hidden
}

.about-preview .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
}

.about-text .features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.1rem;
}

.feature-item h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .2rem
}

.feature-item p {
  color: var(--text-secondary);
  font-size: .88rem
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), #F97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #000;
}


/* ---------- Featured Menu (Home) ---------- */
.featured-menu {
  background: var(--bg-secondary)
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.menu-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease)
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.1)
}

.menu-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-body h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.menu-card-body .price {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: auto;
}

.menu-card-body .desc {
  font-size: .9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ---------- Full Menu Page (Grid Layout) ---------- */
.menu-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.5rem;
}

.menu-tab {
  padding: .8rem 1.8rem;
  border-radius: var(--radius-xl);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: .9rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  transition: all .3s var(--ease);
  cursor: pointer;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.menu-category-section {
  padding: 4rem 0
}

.menu-category-section:not(:last-child) {
  border-bottom: 1px solid var(--border-glass);
}

.menu-category-title {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-category-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: var(--border-glass);
}

/* Reusing menu-grid for the full menu page as well */
.main-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Individual Item in Grid for Full Menu */
.menu-item-grid {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-item-grid:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.02);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.menu-item-price {
  font-family: var(--ff-heading);
  font-weight: 800;
  color: var(--accent);
  font-size: 1.15rem;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.menu-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

.menu-promo-img {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.menu-promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.menu-promo-img:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .menu-promo-grid {
    grid-template-columns: 1fr;
  }

  .menu-promo-img {
    height: 250px;
  }
}

/* Remove emojis from titles */
.menu-section-title .emoji {
  display: none;
}

/* ---------- GSAP Animation Helper Classes ---------- */
.gsap-reveal {
  opacity: 0;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(40px);
}


/* ---------- About Page ---------- */
.about-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.about-story {
  overflow: hidden
}

.about-story .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all .4s var(--ease);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, .2)
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, .15), rgba(249, 115, 22, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.value-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.value-card p {
  color: var(--text-secondary);
  font-size: .9rem
}

/* ---------- Contact Page ---------- */
.contact-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all .3s var(--ease);
}

.contact-card:hover {
  border-color: rgba(245, 158, 11, .2)
}

.contact-card-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 158, 11, .15), rgba(249, 115, 22, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
}

.contact-card h3 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .3rem
}

.contact-card p {
  color: var(--text-secondary);
  font-size: .9rem
}

.contact-card a {
  color: var(--accent);
  transition: color .2s
}

.contact-card a:hover {
  color: var(--accent-hover)
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem
}

.form-group {
  margin-bottom: 1.2rem
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: .4rem;
  color: var(--text-secondary)
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: .95rem;
  transition: border-color .3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px
}

/* ---------- Map ---------- */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  margin-top: 3rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  filter: brightness(.85) contrast(1.1) saturate(.6)
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: .9rem;
  max-width: 300px
}

.footer-col h4 {
  font-family: var(--ff-heading);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: .9rem;
  padding: .3rem 0;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--accent)
}

.footer-social {
  display: flex;
  gap: .8rem;
  margin-top: 1rem
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all .3s var(--ease);
}

.footer-social a:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent)
}

.footer-developer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
}

.footer-developer:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-developer span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-developer img {
  height: 24px;
  width: auto;
  filter: grayscale(1) brightness(1.5);
  transition: filter 0.3s var(--ease);
}

.footer-developer:hover img {
  filter: grayscale(0) brightness(1);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: var(--text-muted);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ---------- Responsive ---------- */
@media(max-width:1024px) {

  .about-preview .grid,
  .about-story .grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .about-img {
    max-width: 500px;
    margin: 0 auto 2rem
  }

  .story-img {
    max-width: 500px;
    margin: 0 auto 2rem
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start
  }

  .stats-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 2rem
  }

  .floating-order {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: .75rem 1.4rem;
    font-size: .85rem
  }
}