/* Base Reset & Variables */
:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --fg: #f0ece4;
  --fg-muted: #9a9590;
  --accent: #c8945a;
  --accent-warm: #b87d44;
  --border: #2a2825;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: rgba(13,13,13,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  width: 36px;
  height: 36px;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.nav-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,148,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 36px;
}

.hero-headline br { display: block; }

.hero-sub {
  max-width: 560px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 64px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 48px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 48px;
}

/* Craft Section */
.craft {
  padding: 120px 48px;
  position: relative;
  z-index: 1;
}

.craft-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.craft-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 600px;
}

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

.craft-item {
  background: var(--surface);
  padding: 48px 40px;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.craft-item:hover {
  border-color: var(--accent);
}

.craft-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.craft-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.craft-item p {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Brand Section */
.brand {
  background: var(--surface);
  padding: 120px 48px;
  position: relative;
  z-index: 1;
}

.brand-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
}

.brand-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.brand-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 36px;
}

.brand-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.brand-values {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.value-item:first-child { border-top: 1px solid var(--border); }

.value-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 2px;
}

.value-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Philosophy Section */
.philosophy {
  padding: 120px 48px;
  position: relative;
  z-index: 1;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--fg);
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
  position: relative;
}

.philosophy-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
}

.philosophy-attr {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 64px;
}

.philosophy-body {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-body p {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Closing Section */
.closing {
  padding: 140px 48px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  margin-bottom: 48px;
  line-height: 1.6;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.footer-location {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--fg-muted);
  text-align: right;
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .craft { padding: 80px 24px; }
  .brand { padding: 80px 24px; }
  .brand-content { grid-template-columns: 1fr; gap: 48px; }
  .craft-grid { grid-template-columns: 1fr; }
  .philosophy { padding: 80px 24px; }
  .closing { padding: 100px 24px; }
  .footer {
    padding: 36px 24px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .footer-location { display: none; }
  .footer-tagline { text-align: left; }
  .hero-stat-row { flex-wrap: wrap; gap: 24px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding-right: 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 52px; }
  .footer { grid-template-columns: 1fr; }
  .footer-tagline { text-align: left; }
  .philosophy-quote { font-size: 24px; }
  .philosophy-quote::before { font-size: 80px; top: -30px; }
}