:root {
  --cream: #F9F6F1;
  --soft-black: #1E1E1E;
  --wine-red: #7B2C2C;
  --champagne-gold: #D6C4A8;
  --text-secondary: rgba(30, 30, 30, 0.7);
  --border-subtle: rgba(30, 30, 30, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background-color: var(--cream);
  color: var(--soft-black);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
.serif-headline {
  font-family: 'Aboreto', serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.sans-body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* Layout */
.section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  position: relative;
}

.container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream) 0%, #faf7f2 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--soft-black);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-subheadline {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--wine-red);
  color: var(--wine-red);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
  background: transparent;
}

.cta-button:hover {
  background: var(--wine-red);
  color: var(--cream);
  transform: translateY(-2px);
}

/* Ambient Background */
.ambient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
      radial-gradient(circle at 20% 80%, rgba(123, 44, 44, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(214, 196, 168, 0.05) 0%, transparent 50%);
  animation: subtleFloat 20s ease-in-out infinite;
}

@keyframes subtleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

/* Section Styling */
.mythos {
  background: var(--cream);
  border-top: 1px solid var(--border-subtle);
}

.philosophy {
  background: linear-gradient(135deg, #faf7f2 0%, var(--cream) 100%);
}

.featured-object {
  background: var(--cream);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--soft-black);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.section-copy {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Featured Object */
.object-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #f5f2ed 0%, #ede9e3 100%);
  border: 1px solid var(--border-subtle);
  margin: 3rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.object-placeholder::before {
  content: "Brushed metal catching candlelight";
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}

.object-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 3rem auto;
  display: block;
  border-radius: 8px;
  box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.15),
      0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.object-image:hover {
  transform: translateY(-5px);
  box-shadow: 
      0 30px 60px rgba(0, 0, 0, 0.2),
      0 12px 24px rgba(0, 0, 0, 0.15);
}

.object-label {
  font-size: 1.3rem;
  color: var(--soft-black);
  margin-bottom: 1rem;
}

.object-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Concierge Section */
.concierge {
  background: var(--soft-black);
  color: var(--cream);
}

.concierge .section-headline {
  color: var(--champagne-gold);
}

.concierge .section-copy {
  color: rgba(249, 246, 241, 0.8);
}

/* Visual Divider */
.visual-divider {
  min-height: 60vh;
  background: 
      linear-gradient(rgba(30, 30, 30, 0.4), rgba(30, 30, 30, 0.4)),
      radial-gradient(circle at center, rgba(123, 44, 44, 0.1) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.divider-placeholder {
  width: 400px;
  height: 300px;
  background: linear-gradient(135deg, rgba(249, 246, 241, 0.1) 0%, rgba(214, 196, 168, 0.05) 100%);
  border: 1px solid rgba(249, 246, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.divider-placeholder::before {
  content: "Renaissance angel sketch in sepia tones";
  color: rgba(249, 246, 241, 0.6);
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}

.divider-quote {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--cream);
  max-width: 600px;
  text-align: center;
  line-height: 1.4;
}

/* Footer */
footer {
  background: var(--cream);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--soft-black);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--wine-red);
}

.email-signup {
  margin-bottom: 3rem;
}

.email-signup h3 {
  font-size: 1.2rem;
  color: var(--soft-black);
  margin-bottom: 1rem;
}

.email-input {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.email-input input {
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--soft-black);
  font-size: 1rem;
  min-width: 250px;
}

.email-input input:focus {
  outline: none;
  border-color: var(--wine-red);
}

.email-input button {
  padding: 0.8rem 1.5rem;
  background: var(--wine-red);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.email-input button:hover {
  background: #6a2525;
}

.footer-status {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .section {
      padding: 4rem 1rem;
      min-height: 60vh;
  }

  .hero {
      min-height: 80vh;
  }

  .footer-links {
      flex-direction: column;
      gap: 1.5rem;
  }

  .email-input {
      flex-direction: column;
  }

  .email-input input {
      min-width: 200px;
  }

  .object-placeholder {
      width: 250px;
      height: 250px;
  }

  .object-image {
      max-width: 300px;
      margin: 2rem auto;
  }

  .divider-placeholder {
      width: 300px;
      height: 200px;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}