:root {
  --color-terracotta: #E07856;
  --color-warm-white: #FDFBF7;
  --color-charcoal: #2D2D2D;
  --font-playfair: 'Playfair Display', serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-inter: 'Inter', sans-serif;
}

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

body {
  background-color: var(--color-warm-white);
  color: var(--color-charcoal);
  font-family: var(--font-inter);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Canvas Background */
#canvas-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* Behind content */
  pointer-events: none;
  /* Let clicks pass through */
}

/* Content Wrapper */
.content-wrapper {
  position: relative;
  z-index: 1;
  /* Above canvas */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-playfair);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
  width: auto;
}

/* Hero Section */
.hero-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Centered for dynamic look */
  text-align: center;
  /* Centered text */
  padding: 4rem 0;
  width: 100%;
  max-width: 800px;
  /* Limit width for readability */
  margin: 0 auto;
}

.headline {
  font-family: var(--font-playfair);
  font-size: 5rem;
  /* Larger for web */
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}

.highlight {
  color: var(--color-terracotta);
  font-style: italic;
}

.subheadline {
  font-family: var(--font-poppins);
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* CTA Form */
.cta-container {
  width: 100%;
  max-width: 480px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group input {
  padding: 1rem;
  border: 2px solid rgba(224, 120, 86, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-inter);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  border-color: var(--color-terracotta);
}

.cta-button {
  padding: 1rem 2rem;
  background-color: var(--color-terracotta);
  color: var(--color-warm-white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 120, 86, 0.3);
}

/* Features */
.features {
  display: flex;
  justify-content: center;
  /* Centered */
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  text-align: center;
}

.feature-item h3 {
  font-family: var(--font-playfair);
  color: var(--color-terracotta);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 1rem;
  color: #666;
  max-width: 250px;
}

/* Footer */
footer {
  padding: 2rem 0;
  text-align: center;
  /* Centered */
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.8rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .headline {
    font-size: 3rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .features {
    gap: 2rem;
  }
}

/* Quirky Text */
.quirky-text {
  font-family: var(--font-poppins);
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

/* Section Title (About Us) */
.section-title {
  font-family: var(--font-playfair);
  font-size: 2.5rem;
  color: var(--color-terracotta);
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

/* Success Message */
.success-text {
  font-family: var(--font-playfair);
  font-size: 2rem;
  color: var(--color-terracotta);
  font-weight: 600;
}