/* ========================================
   BRAND PAGE SHARED STYLES
   ======================================== */

.brand-page-hero {
  padding-top: 72px;
}

.brand-statement {
  padding: 100px 0;
}

.brand-statement .container {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-statement-text .overline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.brand-statement-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.2vw, 60px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 400;
}

.brand-statement-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-gray);
}

.brand-image-placeholder {
  aspect-ratio: 5/4;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-section {
  padding: 80px 0;
  /* background: var(--bg-card); */
  background: #0c3248;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header.section-header-tight {
  margin-bottom: 40px;
}

.section-header .overline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6d6d6;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.01em;
  color: #ffffff;
  font-weight: 400;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--bg-primary);
  overflow: hidden;
  cursor: default;
}

.product-card-image {
  aspect-ratio: 3/4;
  background: var(--bg-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card-image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image-bg {
  transform: scale(1.05);
}

.product-card-body {
  padding: 16px;
}

.product-card-category {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.product-card-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-cream);
  letter-spacing: 0.04em;
}

.craft-section {
  padding: 80px 0;
  background: #fff6e9;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.craft-item {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
}

.craft-item-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.craft-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.craft-item:hover .craft-item-img img {
  transform: scale(1.06);
}

.craft-item-title {
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-cream);
}

.cta-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--bg-primary);
}

.cta-section p {
  font-size: 13px;
  color: var(--text-gray);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.01em;
  color: var(--text-cream);
  margin-bottom: 32px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-statement .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .craft-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}