/* ========================================
   Bow & Peak — Brand Website
   ======================================== */

:root {
  --white: #FFFFFF;
  --alabaster: #F8F8F8;
  --charcoal: #1A1A1A;
  --gray-medium: #666666;
  --gray-light: #E5E5E5;
  --gray-placeholder: #D0D0D0;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-padding: 120px;
  --container-width: 1080px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--gray-light);
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Typography */
h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--charcoal);
  line-height: 1.2;
}

h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  color: var(--charcoal);
}

h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--charcoal);
}

p {
  font-weight: 300;
  font-size: 1rem;
  color: var(--gray-medium);
  line-height: 1.8;
}

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

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-light);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-logo img {
  width: 120px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-medium);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 20px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }

.nav-toggle.open span:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.nav-toggle.open span:last-child {
  bottom: 10px;
  transform: rotate(-45deg);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  padding: 160px 0 0;
  text-align: center;
}

.hero-logo {
  width: 280px;
  height: auto;
  margin-bottom: 48px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-medium);
  margin-bottom: 80px;
}

.hero-image {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

/* ========================================
   About
   ======================================== */
.about {
  padding: var(--section-padding) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 1.75rem;
  line-height: 1.3;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text p:last-child {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ========================================
   Philosophy
   ======================================== */
.philosophy {
  padding: var(--section-padding) 0;
  background: var(--alabaster);
}

.philosophy h2 {
  text-align: center;
  margin-bottom: 64px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.pillar {
  text-align: center;
}

.pillar h3 {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}

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

/* ========================================
   Categories
   ======================================== */
.categories {
  padding: var(--section-padding) 0;
}

.categories h2 {
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.category-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  opacity: 0.85;
}

.category-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.03);
}

.category-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-medium);
  margin-top: 12px;
  text-align: center;
}

/* ========================================
   CTA
   ======================================== */
.cta {
  padding: var(--section-padding) 0;
  background: var(--alabaster);
  text-align: center;
}

.cta p {
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-button {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 48px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #333333;
  color: var(--white);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 60px 0 40px;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: var(--gray-light);
  margin-bottom: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  width: 100px;
  height: auto;
  opacity: 0.5;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-medium);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--charcoal);
}

.footer-contact a {
  font-size: 0.9rem;
  color: var(--gray-medium);
  letter-spacing: 0.02em;
}

.footer-contact a:hover {
  color: var(--charcoal);
}

.footer-legal p {
  font-size: 0.8rem;
  color: var(--gray-placeholder);
}

/* ========================================
   Page Header (for sub-pages)
   ======================================== */
.page-header {
  padding: 140px 0 80px;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  max-width: 560px;
  margin: 0 auto;
}

/* ========================================
   Content Section (for sub-pages)
   ======================================== */
.content-section {
  padding: 80px 0;
}

.content-section.alt {
  background: var(--alabaster);
}

.content-section h2 {
  margin-bottom: 24px;
}

.content-section p {
  margin-bottom: 20px;
  max-width: 720px;
}

.content-section.centered {
  text-align: center;
}

.content-section.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Contact form */
.contact-info {
  max-width: 560px;
}

.contact-info p {
  margin-bottom: 24px;
}

.contact-info a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.contact-info a:hover {
  border-color: var(--charcoal);
}

/* Collection cards */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.collection-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 16px;
}

.collection-card h3 {
  font-weight: 300;
  font-size: 1rem;
  margin-bottom: 8px;
}

.collection-card p {
  font-size: 0.9rem;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 120px 0 0;
  }

  .hero-logo {
    width: 200px;
    margin-bottom: 32px;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .hero-image img {
    height: 280px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .about-grid,
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    aspect-ratio: 16 / 9;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }

  .hero {
    padding: 100px 0 0;
  }

  .hero-logo {
    width: 160px;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-image img {
    height: 200px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 0.85rem;
  }

  .page-header {
    padding: 110px 0 60px;
  }
}
