
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  color: #1c1917; /* stone-800 */
}

/* Main container */
.container {
  min-height: 100vh;
  background-color: #C0A760;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Content box */
.content-box {
  background-color: white;
  border-radius: 0.75rem; /* rounded-xl */
  border: 4px solid #C0A760;
  padding: 3rem;
  max-width: 72rem; /* max-w-6xl */
  width: 100%;
}

/* Grid layout */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

/* Logo section */
.logo-section {
  display: flex;
  justify-content: center;
}

.logo-wrapper {
  width: 100%;
  max-width: 28rem; /* max-w-md */
}

.logo-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Text content section */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; /* text-5xl */
  font-weight: 300; /* font-light */
  color: #1c1917; /* text-stone-800 */
  line-height: 1.1;
}

.subtitle {
  font-size: 1.25rem; /* text-xl */
  color: #57534e; /* text-stone-600 */
  font-weight: 300; /* font-light */
}

/* Description section */
.description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #44403c; /* text-stone-700 */
  line-height: 1.625; /* leading-relaxed */
}

.description-text {
  font-size: 1.125rem; /* text-lg */
}

.description-text.emphasis {
  font-weight: 500; /* font-medium */
  color: #1c1917; /* text-stone-800 */
}

/* Contact section */
.contact {
  padding-top: 2rem;
}

.contact-label {
  color: #57534e; /* text-stone-600 */
  margin-bottom: 0.5rem;
}

.contact-email {
  font-size: 1.25rem; /* text-xl */
  color: #1c1917; /* text-stone-800 */
  font-weight: 500; /* font-medium */
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: #d97706; /* hover:text-amber-600 */
}

/* Large screen styles */
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .logo-section {
    justify-content: flex-start;
  }
  
  .main-title {
    font-size: 3.75rem; /* lg:text-6xl */
  }
  
  .subtitle {
    font-size: 1.5rem; /* lg:text-2xl */
  }
}

/* Medium screen adjustments */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .content-box {
    padding: 2rem;
  }
  
  .grid {
    gap: 2rem;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.125rem;
  }
  
  .description-text {
    font-size: 1rem;
  }
  
  .contact-email {
    font-size: 1.125rem;
  }
}

/* Small screen adjustments */
@media (max-width: 480px) {
  .container {
    padding: 0.5rem;
  }
  
  .content-box {
    padding: 1.5rem;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
}