* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fff7f6 0%, #fdeaea 45%, #f7dfe1 100%);
  color: #536744;
  font-family: 'Quicksand', sans-serif;
}

.site-header {
  width: 100%;
  padding: 22px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 250, 248, 0.95);
  border-bottom: 1px solid rgba(232, 180, 184, 0.35);
}

.logo,
.footer-logo {
  color: #536744;
  line-height: 1;
}

.script {
  font-family: 'Parisienne', cursive;
  font-size: 42px;
}

.spaced {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.35em;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

nav a {
  color: #6a594e;
  text-decoration: none;
}

main {
  width: 100%;
}

.hero {
  width: 100%;
  background: #f8e6e6;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
}

.story-card {
  padding: 55px 5vw 70px;
  background: #fff8f7;
}

.story-card img {
  display: block;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(121, 80, 78, 0.10);
}

footer {
  text-align: center;
  background: #f8dfe1;
  padding: 38px 20px 42px;
  color: #536744;
}

footer p {
  margin: 14px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  nav {
    gap: 18px;
    font-size: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .script {
    font-size: 38px;
  }

  .story-card {
    padding: 28px 14px 44px;
  }

  .story-card img {
    border-radius: 16px;
  }
}
