/* ========================================
   CSS Variables - Color Palette
   ======================================== */
:root {
  /* Luxury minimalist palette: off-white, charcoal, and grays */
  --background: oklch(0.98 0.004 60);
  --foreground: oklch(0.18 0.01 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.01 0);
  --primary: oklch(0.18 0.01 0);
  --primary-foreground: oklch(0.98 0.004 60);
  --secondary: oklch(0.92 0.01 0);
  --secondary-foreground: oklch(0.18 0.01 0);
  --muted: oklch(0.88 0.005 0);
  --muted-foreground: oklch(0.55 0.02 0);
  --accent: oklch(0.18 0.01 0);
  --accent-foreground: oklch(0.98 0.004 60);
  --border: oklch(0.94 0.004 0);
  --radius: 0.5rem;
  
  /* Typography */
  --font-sans: "Geist Sans", "Geist", system-ui, -apple-system, sans-serif;
  --font-playfair: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ========================================
   Typography Utilities
   ======================================== */
.font-display {
  font-family: var(--font-playfair);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.font-subheading {
  font-family: var(--font-playfair);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--primary);
}

.text-balance {
  text-wrap: balance;
}

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

/* ========================================
   Layout
   ======================================== */
.page-wrapper {
  min-height: 100vh;
}

.container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 2rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('/placeholder.svg?height=1080&width=1920&query=minimalist-fashion-hero');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo-line {
  width: 4rem;
  height: 0.25rem;
  background-color: var(--primary);
  margin: 1rem auto 0;
}

.tagline-container {
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 1.5rem auto 0;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding-top: 2rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary:hover .chevron-icon {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.chevron-icon {
  transition: transform 0.3s ease;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1s infinite;
}

.scroll-dot {
  width: 0.25rem;
  height: 1.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 9999px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-25%);
  }
}

/* ========================================
   About Section
   ======================================== */
.about-section {
  padding: 5rem 1rem;
  background-color: var(--background);
}

@media (min-width: 768px) {
  .about-section {
    padding: 8rem 2rem;
  }
}

.about-section h2 {
  margin-bottom: 2rem;
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--foreground);
  margin-bottom: 3rem;
  max-width: 48rem;
}

.pillars-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.pillar h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pillar p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ========================================
   Brands Section
   ======================================== */
.brands-section {
  padding: 5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .brands-section {
    padding: 8rem 2rem;
  }
}

.brands-section h2 {
  margin-bottom: 4rem;
}

.brands-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.brand-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.brand-card:hover {
  border-color: rgba(0, 0, 0, 0.3);
}

.brand-image {
  aspect-ratio: 3 / 2;
  background-color: var(--muted);
  background-size: cover;
  background-position: center;
}

.brand-image-sahet {
  background-image: url('/placeholder.svg?height=400&width=500&query=minimalist-mens-clothing');
}

.brand-image-bassica {
  background-image: url('/placeholder.svg?height=400&width=500&query=minimalist-mens-accessories');
}

.brand-content {
  padding: 2rem;
}

.brand-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.brand-content p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.3s ease;
}

.brand-link:hover {
  gap: 1rem;
}

/* ========================================
   Philosophy Section
   ======================================== */
.philosophy-section {
  padding: 5rem 1rem;
  background-color: var(--background);
}

@media (min-width: 768px) {
  .philosophy-section {
    padding: 8rem 2rem;
  }
}

.philosophy-section h2 {
  margin-bottom: 3rem;
}

.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .philosophy-pillars {
    gap: 1.5rem;
  }
}

.philosophy-word {
  font-family: var(--font-playfair);
  font-size: 1.5rem;
  color: var(--primary);
  text-wrap: balance;
}

@media (min-width: 768px) {
  .philosophy-word {
    font-size: 1.875rem;
  }
}

.philosophy-divider {
  width: 3rem;
  height: 0.25rem;
  background-color: rgba(0, 0, 0, 0.1);
}

.philosophy-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-top: 4rem;
  line-height: 1.75;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.footer .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid-simple {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand h3 {
  font-family: var(--font-playfair);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-column h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

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

.footer-legal a:hover {
  color: var(--primary);
}

/* ========================================
   Page Header (for subpages)
   ======================================== */
.page-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  background-color: var(--background);
}

.header-logo {
  font-family: var(--font-playfair);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: opacity 0.2s ease;
}

.header-logo:hover {
  opacity: 0.7;
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-page {
  padding: 4rem 1rem;
  min-height: calc(100vh - 400px);
}

@media (min-width: 768px) {
  .legal-page {
    padding: 5rem 2rem;
  }
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.legal-intro {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--foreground);
  margin-bottom: 3rem;
  max-width: 48rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.legal-section p {
  color: var(--foreground);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-section li {
  color: var(--foreground);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.legal-contact {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin: 1.5rem 0;
  padding: 1rem 2rem;
  border: 1px solid var(--border);
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.legal-contact:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

a.legal-contact {
  text-decoration: none;
}

.legal-highlight {
  background-color: var(--secondary);
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--primary);
  margin: 1.5rem 0;
  font-weight: 500;
}

/* ========================================
   About Page
   ======================================== */
.about-page {
  padding: 4rem 1rem;
  min-height: calc(100vh - 300px);
}

@media (min-width: 768px) {
  .about-page {
    padding: 5rem 2rem;
  }
}

.about-page h1 {
  margin-bottom: 3rem;
}

.about-content {
  max-width: 48rem;
}

.about-lead {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.about-content > p {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.about-pillars {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .about-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.about-pillar h2 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.about-pillar p {
  color: var(--muted-foreground);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.about-brands {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-brands h2 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-brands p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.about-brands strong {
  color: var(--primary);
  font-weight: 600;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page {
  padding: 4rem 1rem;
  min-height: calc(100vh - 300px);
}

@media (min-width: 768px) {
  .contact-page {
    padding: 5rem 2rem;
  }
}

.contact-page h1 {
  margin-bottom: 3rem;
}

.contact-content {
  max-width: 32rem;
}

.contact-intro {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.contact-content > p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.contact-note {
  margin-top: 2rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

