/* ===== COLUMBUS CRAFT MEATS — Main Stylesheet ===== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg-dark: #1a1a1a;
  --bg-brown: #2c1a0e;
  --bg-card: #222;
  --gold: #c8922a;
  --gold-light: #e0b04a;
  --red: #8b1a1a;
  --red-dark: #6b1212;
  --text-light: #f5f0e8;
  --text-cream: #e8d5b7;
  --text-muted: #999;
  --border-gold: #c8922a;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Arial, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-hover: 0 12px 48px rgba(200,146,42,0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Grain Overlay (global) --- */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.03;
  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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  z-index: 9999;
}

/* --- Utility Classes --- */
.section-subtitle {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-cream);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.text-center {
  text-align: center;
}

/* --- Fade-In Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--text-light);
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.15);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo a:hover {
  color: var(--gold);
}

.logo span {
  color: var(--gold);
}

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-cream);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-cream);
  transition: all 0.3s ease;
}

.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);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-brown);
  border-top: 3px solid var(--gold);
  padding: 60px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .logo-footer {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-brand .logo-footer span {
  color: var(--gold);
}

.footer-brand p {
  color: var(--text-cream);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-cream);
  font-size: 0.92rem;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col p {
  color: var(--text-cream);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 50%;
  transition: all var(--transition);
}

.social-links a:hover {
  border-color: var(--gold);
  background: rgba(200,146,42,0.1);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--text-cream);
  transition: fill var(--transition);
}

.social-links a:hover svg {
  fill: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(200,146,42,0.15);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== HERO SECTION (shared) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(200,146,42,0.06) 0%, transparent 70%),
              radial-gradient(ellipse at 30% 50%, rgba(139,26,26,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Parallax Hero Inner */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-cream);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Banner (subpages) */
.page-banner {
  position: relative;
  padding: 140px 20px 80px;
  text-align: center;
  background: var(--bg-dark);
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(200,146,42,0.05) 0%, transparent 70%);
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.page-banner p {
  color: var(--text-cream);
  font-size: 1.1rem;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* ===== WHY SECTION (index) ===== */
.why-section {
  padding: 100px 20px;
  background: var(--bg-brown);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.why-card {
  background: rgba(26,26,26,0.6);
  border: 1px solid rgba(200,146,42,0.12);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,146,42,0.3);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-cream);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== FEATURED PRODUCTS (index) ===== */
.products-featured {
  padding: 100px 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,146,42,0.1);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,146,42,0.08);
  border-radius: 50%;
}

.product-img svg {
  width: 36px;
  height: 36px;
  fill: var(--gold);
}

.product-card .product-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(200,146,42,0.12);
  color: var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.product-card .product-weight {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.product-card .product-price {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card .product-desc {
  color: var(--text-cream);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 20px;
  background: var(--bg-brown);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.testimonial-card {
  background: rgba(26,26,26,0.5);
  padding: 36px 28px;
  border-left: 3px solid var(--gold);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-cream);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-family: var(--font-heading);
  color: var(--gold);
  font-style: normal;
  font-size: 0.95rem;
}

.testimonial-card .location {
  color: var(--text-muted);
  font-size: 0.8rem;
}

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

/* Story Section */
.story-section {
  padding: 80px 20px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.story-text p {
  color: var(--text-cream);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.story-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--bg-brown), var(--bg-dark));
  border: 1px solid rgba(200,146,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.story-image::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(200,146,42,0.1);
}

/* Timeline */
.timeline-section {
  padding: 80px 20px;
  background: var(--bg-brown);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.timeline-item {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid rgba(200,146,42,0.15);
  background: rgba(26,26,26,0.4);
  position: relative;
}

.timeline-item .year {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.timeline-item h4 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-cream);
  font-size: 0.9rem;
}

/* Team */
.team-section {
  padding: 80px 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.team-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(200,146,42,0.08);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,146,42,0.25);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-light);
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Values */
.values-section {
  padding: 80px 20px;
  background: var(--bg-brown);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.value-item {
  text-align: center;
  padding: 36px 20px;
}

.value-item .value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-item h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-item p {
  color: var(--text-cream);
  font-size: 0.92rem;
}

/* ===== PRODUCTS PAGE ===== */
.products-page {
  padding: 60px 20px 100px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid rgba(200,146,42,0.25);
  color: var(--text-cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

.product-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card-full {
  background: var(--bg-card);
  border: 1px solid rgba(200,146,42,0.1);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.product-card-full:hover::before {
  transform: scaleX(1);
}

.product-card-full:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card-full .ptag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(200,146,42,0.12);
  color: var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.product-card-full h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.product-card-full .pweight {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.product-card-full .pprice {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card-full .pdesc {
  color: var(--text-cream);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 60px 20px 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-wrap {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid rgba(200,146,42,0.08);
}

.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-cream);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(26,26,26,0.6);
  border: 1px solid rgba(200,146,42,0.15);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group .error-msg {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--red);
}

.form-group.error .error-msg {
  display: block;
}

.success-message {
  display: none;
  padding: 24px;
  background: rgba(200,146,42,0.08);
  border: 1px solid var(--gold);
  text-align: center;
  margin-top: 20px;
}

.success-message.show {
  display: block;
}

.success-message svg {
  width: 48px;
  height: 48px;
  fill: var(--gold);
  margin-bottom: 12px;
}

.success-message h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.success-message p {
  color: var(--text-cream);
}

/* Contact Sidebar */
.contact-sidebar {
  padding: 0;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,146,42,0.08);
  padding: 36px 32px;
  margin-bottom: 28px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-card p {
  color: var(--text-cream);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--text-cream);
}

.contact-info-card a:hover {
  color: var(--gold);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 8px 0;
  color: var(--text-cream);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(200,146,42,0.06);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.map-container {
  margin-top: 28px;
  border: 1px solid rgba(200,146,42,0.1);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
}

/* ===== 404 PAGE ===== */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
}

.error-page .error-404 {
  font-family: var(--font-heading);
  font-size: 10rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 4px 60px rgba(200,146,42,0.2);
}

.error-page h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.error-page p {
  color: var(--text-cream);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(12px);
    padding: 24px 20px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(200,146,42,0.15);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }

  .why-grid,
  .testimonials-grid,
  .team-grid,
  .values-grid,
  .timeline {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .products-grid,
  .product-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-image {
    height: 280px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .error-page .error-404 {
    font-size: 6rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .page-banner h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .products-grid,
  .product-grid-full {
    grid-template-columns: 1fr;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.75rem;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  .logo a {
    font-size: 1.1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .error-page .error-404 {
    font-size: 4rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}
