/* ============================================================
   PAGE BANNERS
   ============================================================ */
.page-banner {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 20px 40px;
  background-color: var(--ink);
  overflow: hidden;
  text-align: center;
}

.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-banner h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 400;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-banner p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 500;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   CATALOG GRID PAGE
   ============================================================ */
.catalog-section {
  padding: 60px clamp(16px, 5vw, 72px);
  background-color: var(--cream);
  min-height: 50vh;
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.catalog-results {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.catalog-filters select {
  padding: 10px 16px;
  border: 1px solid rgba(23, 17, 15, 0.15);
  border-radius: 8px;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  cursor: pointer;
}

.catalog-filters select:focus {
  border-color: var(--gold-dark);
}

/* Reusing .products-grid and .product-card from styles.css */

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: calc(var(--header-h) + 60px) clamp(16px, 5vw, 72px) 80px;
  background-color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  margin: 0 0 20px;
  line-height: 1;
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  color: var(--gold-dark);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-method div h3 {
  margin: 0 0 4px;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-method div p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(23, 17, 15, 0.15);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(229, 178, 32, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: var(--gold-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px clamp(20px, 5vw, 72px) 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 60px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 24px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-main);
}

.footer-brand img {
  width: 180px;
  filter: brightness(0) invert(1);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.footer-socials a:hover {
  background: var(--gold-main);
  color: var(--ink);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 920px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + 40px);
    gap: 40px;
  }
  
  .contact-form {
    padding: 24px;
  }

  .site-footer {
    padding: 40px 20px 100px; /* Space for bottom nav */
    text-align: center;
  }
  
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    text-align: center;
    justify-content: center;
  }
}
