/* Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  color: #333;
  background-color: #efeee7;
  min-height: 100vh;
  overflow-x: hidden;
}

.accent {
	color: #00bf63;
}

/* Full-height splash layout with Flexbox */
.splash-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  justify-content: space-between;
}

/* Centered content block */
.content-block {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 1rem;
}

.content-block h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.content-block p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Full-bleed banner wrapper */
.banner-wrapper {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  height: clamp(200px, 30vh, 300px);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Banner image itself */
.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile: thinner banner */
@media (max-width: 768px) {
  .banner-wrapper {
    height: clamp(120px, 20vh, 180px);
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

/* Contact section */
.contact-section {
  text-align: center;
  padding: 2rem 1rem;
}

.contact-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #444;
}

input,
textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #4a5568;
  box-shadow: 0 0 0 3px rgba(74, 85, 104, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  padding: 1.25rem 2.5rem;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #1a1a1a, #333);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
button:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Hidden honeypot */
.hidden {
  display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .splash-container {
    padding: 1rem 0.5rem;
  }
  
  .content-block h1 {
    margin-bottom: 1rem;
  }
  
  .banner-image {
    margin: 1rem 0;
  }
}