/* Basic Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  background-color: #f7f7f7;
  color: #111111;
}

/* Skip Link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

/* Navigation */
.site-header {
  background: #1d0f12;
  padding: 1rem 2rem;
  box-shadow: 0px 9px 50px #c56361;
  border-bottom: 2px solid rgb(172 40 49 / 70%);
}

h1 {
  margin: 0;
  color: #f7f7f7;
}

p {
  font-size: 1.5rem;
  color: #721a1c; 
}

.lead-in {
  font-size: 1.75rem;
  font-weight: 800;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #1d0f12;
}

a:hover {
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid #1d0f12;
  outline-offset: 2px;
}


/* Main Content */
main {
  padding: 8rem 2rem;
}

.home-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.cta-button {
  background: #721a1c;
  padding: 4rem 2rem;
  position: relative;
  transition: background 0.3s ease;
  font-size: 2rem;
  margin: 0;
  text-align: center;
  color: #f7f7f7;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.cta-button:hover {
  background: #1d0f12;
}

.cta-button:focus-visible {
  background: #1d0f12;
  outline: 2px dashed #c52039;
  outline-offset: 2px;
  text-decoration: none;
}

/* Forms */
.form-field {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-weight: 600;
}

input,
textarea,
button {
  font-size: 1rem;
  width: 100%;
  padding: 0.5rem;
}

button {
  cursor: pointer;
}

/* Footer */
.site-footer {
  background: #1d0f12;
  padding: 1rem 2rem;
  box-shadow: 0px -9px 50px #c56361;
  border-top: 2px solid rgb(172 40 49 / 70%);
}

.site-footer p, .site-footer a {
  font-size: 1rem;
  font-weight: 400;
  color: #f7f7f7;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 964px) {  
  .home-section {
    flex-direction: row;
    max-width: 1400px;
    margin: 0 auto;
  }
  .site-header-content,
  .site-footer-content {
    max-width: 1920px;
    margin: 0 auto;
  }

  .text-container {
    flex: 1;
  }
  .image-container {
    flex: 1;
    img {
      position: sticky;
      top: 60px;
    }
  }
  .site-footer {
    text-align: right;
  }
}