:root {
  color-scheme: light;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  color: #3b2e2a;
  background: #f4ebe6;
  line-height: 1.7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f4ebe6;
  color: #3b2e2a;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-header {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #f8efe9 0%, #f4ebe6 100%);
}

.header-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8b776c;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 650px;
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  margin-top: 0.5rem;
}

p {
  margin: 1rem 0;
}

.intro,
.section-text {
  max-width: 40rem;
  font-size: 1.1rem;
  color: #5a453f;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.button-primary {
  background: #222;
  color: #fff;
}

.button-primary:hover {
  background: #444;
}

.hero-button {
  margin-top: 40px;
}

.hero-box {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(179, 141, 124, 0.12);
  border: 1px solid rgba(140, 101, 88, 0.18);
}

.section {
  padding: 4rem 0;
}

.softly-shaded {
  background: #f6efea;
}

.cards-grid,
.audio-grid,
.steps-grid,
.test-grid {
  display: grid;
  gap: 1.4rem;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.audio-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.test-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card,
.sample-card,
.step-card,
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(135, 103, 92, 0.18);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(94, 71, 63, 0.06);
}

.card {
  text-align: center;
  font-weight: 600;
  color: #593f36;
}

.sample-card {
  display: grid;
  gap: 1rem;
}

.image-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.image-container img {
  width: 100%;
  border-radius: 12px;
}

.text-overlay {
  text-align: center;
  margin-top: 20px;
}

.text-overlay .intro {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.text-overlay .title {
  font-size: 32px;
  font-weight: 700;
}

.feature-audio {
  text-align: center;
  margin-top: 25px;
}

.audio-player {
  display: flex;
  justify-content: center;
}

.audio-play {
  background-color: #222;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.audio-play:hover {
  background-color: #444;
}

.order-form {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
}

.order-form label {
  display: grid;
  gap: 0.5rem;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #d3b9aa;
  border-radius: 14px;
  background: #fff;
  font: inherit;
  color: #3b2e2a;
  font-size: 18px;
}

.order-form textarea {
  min-height: 180px;
}

.page-footer {
  padding: 2rem 0 3rem;
  background: #efe1d8;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: #5a453f;
}

@media (min-width: 800px) {

  .header-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

}

@media (max-width: 799px) {

  .header-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  h1 {
    max-width: 100%;
  }

  .intro,
  .section-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-button {
    display: flex;
    justify-content: center;
  }

  .button {
    width: 100%;
    max-width: 260px;
  }

}

#about img {
  max-width: 700px;
  width: 85%;
  margin: 0 auto;
  display: block;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 22px;
    margin-bottom: 20px;
    border: 2px solid #4a3a36;
    border-radius: 18px;
    background-color: #f7f5f3;

    font-family: Georgia, serif;
    font-size: 28px;
    color: #2d1f1b;
    line-height: 1.5;

    box-sizing: border-box;
}

form textarea {
    min-height: 260px;
    resize: vertical;
}

form input::placeholder,
form textarea::placeholder {
    color: #4a3a36;
    opacity: 1;
    font-family: Georgia, serif;
    font-size: 28px;
}

.song-button {
    margin-top: 20px;
    padding: 20px 34px;
    font-size: 24px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-family: Georgia, serif;
    transition: 0.3s ease;
}

.song-button:hover {
    background: #444;
}