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

:root {
  /* Colors */
  --bg-primary: #14110f;
  --bg-secondary: #1f1a17;
  --bg-glass: rgba(255, 248, 240, 0.04);
  --bg-glass-hover: rgba(255, 248, 240, 0.08);
  
  --accent-primary: #c89b5a;
  --accent-secondary: #b46a3c;
  --accent-glow: #f5e6d3;
  
  --text-primary: #fff6ec;
  --text-secondary: #e7d3bd;
  --text-muted: #c7a98b;

  --border-glass: rgba(200, 155, 90, 0.15);
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 4px 20px rgba(200, 155, 90, 0.1);
  
  /* Spacing */
  --space-section: 120px;
  --container-pad: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.1rem;
}

a {
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

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

/* Layout */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

section {
  padding: var(--space-section) 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  box-shadow: 0 4px 15px rgba(180, 106, 60, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 155, 90, 0.3);
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-glass-hover);
  transform: translateY(-2px);
  color: var(--accent-glow);
  border-color: var(--accent-primary);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(20, 17, 15, 0.85);
  backdrop-filter: blur(12px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(200, 155, 90, 0.1);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-primary);
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-glow);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(31, 26, 23, 0) 0%, rgba(20, 17, 15, 1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 24px;
  color: var(--accent-glow);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inset 0 0 50px rgba(20, 17, 15, 0.5);
  pointer-events: none;
}

.hero-artisan-image {
  width: 100%;
  height: 700px;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

.hero:hover .hero-artisan-image {
  transform: scale(1);
}

/* Feature Cards (Curated Spaces) */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--accent-glow);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--bg-glass-hover);
  box-shadow: var(--shadow-glow);
  border-color: rgba(200, 155, 90, 0.3);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  color: var(--accent-primary);
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Immersive Showcase */
.showcase-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: 1;
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(20, 17, 15, 0.9), rgba(20, 17, 15, 0.3));
  z-index: 2;
}

.showcase-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 60px;
  max-width: 800px;
  margin-right: auto;
}

.showcase-content h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

/* Trust / Info Section */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-text h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

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

.info-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item svg {
  width: 32px;
  height: 32px;
  color: var(--accent-secondary);
}

.info-item h4 {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

/* Standard Page Header */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-glass);
}

.page-header h1 {
  font-size: 4rem;
  color: var(--accent-glow);
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Forms */
.contact-form {
  background: var(--bg-glass);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 16px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(0,0,0,0.4);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Footer */
.site-footer {
  background: #0d0b0a;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(200, 155, 90, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .brand-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--accent-glow);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Document content (Privacy/Terms) */
.document-content {
  max-width: 800px;
  margin: 0 auto;
}

.document-content h2 {
  margin: 40px 0 20px;
  color: var(--accent-primary);
}

.document-content p {
  margin-bottom: 20px;
}

/* Utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mt-4 { margin-top: 32px; }