/* ===== CSS Variables ===== */
:root {
  --terracotta: #B85C1E;
  --terracotta-dark: #8B4513;
  --gold: #D4A24E;
  --gold-light: #E8C47A;
  --saddle: #6B3A1F;
  --espresso: #3A1F0B;
  --cream: #FFF5E6;
  --warm-white: #FFF9F0;
  --warm-gray: #6B5B4F;
  --light-tan: #F2E4D0;
  --font-display: 'Noto Serif', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --font-script: 'Satisfy', cursive;
  --font-narrow: 'Archivo Narrow', 'Arial Narrow', sans-serif;
  --shadow-sm: 0 2px 8px rgba(62, 39, 35, 0.08);
  --shadow-md: 0 4px 20px rgba(62, 39, 35, 0.12);
  --shadow-lg: 0 8px 40px rgba(62, 39, 35, 0.16);
  --radius: 8px;
  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ===== Typography ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--saddle);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-desc {
  font-size: 18px;
  color: var(--warm-gray);
  max-width: 600px;
  margin-bottom: 40px;
}

.center { text-align: center; }
.section-desc.center { margin-left: auto; margin-right: auto; }
.section-label.center, .section-title.center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #FFF5E6;
  border-color: rgba(255, 245, 230, 0.5);
}
.btn-outline:hover {
  background: rgba(255, 245, 230, 0.15);
  color: #FFF5E6;
  transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(60, 24, 8, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: #FFF0D9;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.nav-menu a:hover { color: #fff; }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  padding: 10px 24px !important;
  border-radius: 20px;
  color: var(--espresso) !important;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7A3212;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, #3C1808 0%, #5A2810 20%, #6E3212 40%, #7A3812 55%, #884015 75%, #964818 100%);
}

/* Decorative squiggle */
.hero-swoosh {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -38%);
  width: min(85vw, 950px);
  height: auto;
  aspect-ratio: 1000 / 400;
  z-index: 1;
  pointer-events: none;
}

.hero-swoosh svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-script {
  font-family: 'Satisfy', cursive;
  font-size: clamp(26px, 4.5vw, 44px);
  color: #E8D0A0;
  margin-bottom: -8px;
}

.hero-title {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(70px, 14vw, 140px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
  color: #FFE8C8;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-subtitle {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #D4A24E;
}

.hero-location {
  font-size: 17px;
  letter-spacing: 1px;
  color: #FFF0D9;
  margin-bottom: 20px;
}

.hero-extras {
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: rgba(255, 240, 217, 0.65);
  margin-bottom: 0;
}


/* ===== About ===== */
.about {
  background: linear-gradient(180deg, #D2B272 0%, #DABC7C 25%, #E0BA7E 50%, #E6B47A 75%, #EEB076 100%);
  color: #FFF5E6;
  padding: 80px 0;
}

.about .section-label {
  display: none;
}

.about .section-title {
  font-family: 'Satisfy', cursive;
  color: #FFF0D9;
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 400;
  margin-bottom: 16px;
}

.about-text {
  text-align: right;
}

.about-text p {
  font-family: 'Archivo Narrow', 'Arial Narrow', sans-serif;
  color: #FFF0D9 !important;
  font-size: clamp(22px, 3vw, 32px) !important;
  text-align: right;
  line-height: 1.4;
  margin-bottom: 0 !important;
  font-weight: 400;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.about-image-placeholder {
  width: 100%;
  max-width: 440px;
  min-height: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-image-placeholder img {
  width: 100%;
  max-width: 320px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(58, 31, 11, 0.2));
}

.about-image-placeholder svg { width: 70%; height: 70%; }

/* Geometric shapes behind taco */
.about-geo {
  position: absolute;
  z-index: 1;
}

.about-geo-1 {
  width: 260px;
  height: 260px;
  background: #B07038;
  opacity: 0.65;
  clip-path: polygon(20% 5%, 55% 0%, 82% 8%, 100% 35%, 95% 68%, 78% 92%, 45% 100%, 15% 90%, 0% 62%, 5% 28%);
  top: 10%;
  left: -5%;
}

.about-geo-2 {
  width: 220px;
  height: 220px;
  background: #9B6030;
  opacity: 0.55;
  clip-path: polygon(25% 0%, 60% 3%, 88% 15%, 100% 42%, 92% 75%, 70% 95%, 35% 100%, 8% 82%, 0% 50%, 10% 18%);
  top: -15%;
  left: 18%;
}

.about-text p {
  color: var(--warm-gray);
  margin-bottom: 16px;
  font-size: 17px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.about-feature {
  text-align: center;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--espresso);
}

.about-feature p {
  font-size: 13px !important;
  color: var(--warm-gray);
  margin-bottom: 0 !important;
}

/* ===== Menu ===== */
.menu {
  background: var(--light-tan);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.menu-tab {
  padding: 10px 24px;
  border: 2px solid var(--saddle);
  border-radius: 30px;
  background: transparent;
  color: var(--saddle);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--saddle);
  color: #FFF5E6;
}

.menu-note {
  background: var(--warm-white);
  border-left: 4px solid var(--gold);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--warm-gray);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.menu-sub-heading {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--terracotta);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(193, 68, 14, 0.2);
}

.menu-sub-heading:first-of-type {
  margin-top: 0;
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-item {
  background: var(--warm-white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.menu-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 16px;
}

.menu-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--espresso);
}

.menu-price {
  font-weight: 700;
  color: var(--saddle);
  font-size: 18px;
  white-space: nowrap;
}

.menu-item p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ===== Gallery ===== */
.gallery { background: var(--warm-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.gallery-large {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  position: relative;
}

.gallery-placeholder span {
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 1;
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ===== Catering ===== */
.catering {
  position: relative;
  background:
    linear-gradient(135deg, rgba(62, 39, 35, 0.9), rgba(139, 69, 19, 0.85)),
    linear-gradient(to right, #3E2723, #5C2D0E);
  color: #fff;
}

.catering .section-label { color: var(--gold); }
.catering .section-title { color: #fff; }

.catering-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.catering-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.catering-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.catering-feature h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--gold);
}

.catering-feature p {
  font-size: 14px !important;
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 0 !important;
}

/* ===== Reviews ===== */
.reviews { background: var(--light-tan); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--warm-white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 16px;
  color: var(--warm-gray);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.review-author strong {
  display: block;
  color: var(--espresso);
  font-size: 16px;
}

.review-author span {
  font-size: 13px;
  color: var(--warm-gray);
}

/* ===== Order Online ===== */
.order { background: var(--warm-white); }

.order-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.order-options.order-single {
  grid-template-columns: 1fr;
  max-width: 360px;
}

.order-card {
  background: var(--light-tan);
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.order-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.order-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.order-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--espresso);
}

.order-card p {
  font-size: 14px;
  color: var(--warm-gray);
}

/* ===== Contact ===== */
.contact {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-details {
  margin-top: 24px;
}

.contact-item {
  margin-bottom: 24px;
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--saddle);
  margin-bottom: 4px;
}

.contact-item a {
  color: var(--espresso);
  transition: color var(--transition);
}

.contact-item a:hover { color: var(--terracotta); }

.hours-table {
  margin-top: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--light-tan);
  font-size: 15px;
}

.contact-form-wrapper {
  background: var(--light-tan);
  padding: 40px;
  border-radius: var(--radius);
}

.contact-form-wrapper h4 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--espresso);
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0d5ca;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--espresso);
  background: var(--warm-white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
}

.form-group textarea { resize: vertical; }

/* ===== Footer ===== */
.footer {
  background: #3A1F0E;
  color: rgba(255,245,230,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  font-size: 15px;
}

.footer-links a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-image-placeholder { max-width: 280px; }
  .menu-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .catering-features { grid-template-columns: 1fr; gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-large { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #3A1F0E;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }

  .nav-menu.open { right: 0; }

  .nav-toggle { display: flex; z-index: 1001; }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hide About section on mobile */
  .about { display: none; }

  .hero { min-height: 600px; }
  .hero-title { letter-spacing: 1px; }
  .hero-extras { font-size: 12px; padding: 0 10px; }
  .hero-swoosh { width: 90vw; }

  .about { padding: 60px 0; }
  .about-geo-1 { width: 180px; height: 180px; }
  .about-geo-2 { width: 150px; height: 150px; }

  .section { padding: 60px 0; }
  .container { padding: 0 16px; }

  .section-title { font-size: 26px; }
  .section-desc { font-size: 16px; }

  /* Menu tabs: horizontal scroll on mobile */
  .menu-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 8px;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 13px;
  }

  .menu-item { padding: 16px; }
  .menu-item h4 { font-size: 16px; }
  .menu-price { font-size: 16px; }
  .menu-item-header { gap: 8px; }
  .menu-sub-heading { font-size: 16px; margin: 20px 0 10px; }
  .menu-note { font-size: 13px; padding: 10px 12px; }

  /* Smaller gallery on mobile */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-item.gallery-large { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-placeholder span { font-size: 13px; }

  .reviews-grid { gap: 20px; }
  .review-card { padding: 24px; }
  .review-text { font-size: 15px; }

  .order-options { grid-template-columns: 1fr; max-width: 320px; }

  .contact-form-wrapper { padding: 24px; }
  .contact-form-wrapper h4 { font-size: 20px; }

  .hours-row { font-size: 14px; }
  .hours-row span:first-child { min-width: 0; }

  .footer { padding: 40px 0 0; }
  .footer-logo { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .hero-script { font-size: 24px; }
  .hero-title { font-size: 52px; }
  .hero-subtitle { font-size: 14px; letter-spacing: 1px; }
  .hero-location { font-size: 13px; letter-spacing: 1px; }
  .hero-extras { font-size: 11px; line-height: 1.6; }
  .hero-swoosh { width: 95vw; }

  .about-grid { text-align: center; }
  .about-text { text-align: center; }
  .about-text p { text-align: center !important; }
  .about-geo-1 { width: 140px; height: 140px; left: 5%; }
  .about-geo-2 { width: 120px; height: 120px; left: 25%; }

  .section { padding: 48px 0; }
  .section-label { font-size: 12px; letter-spacing: 2px; }
  .section-title { font-size: 22px; }

  .about-image-placeholder { max-width: 200px; }
  .about-feature h4 { font-size: 15px; }

  .menu-item-header { flex-direction: column; gap: 2px; }
  .menu-item h4 { font-size: 15px; }
  .menu-price { font-size: 15px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gallery-item.gallery-large { aspect-ratio: 1; }
  .gallery-item { aspect-ratio: 1; }
  .gallery-placeholder span { font-size: 11px; }

  .contact-item h4 { font-size: 15px; }
  .hours-row { flex-direction: column; gap: 2px; padding: 8px 0; }

  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; padding: 12px 14px; }

  .footer-bottom { font-size: 12px; }
}
