* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f1e7;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #f7cdd0;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  transition: color 0.3s;
}

nav a:hover {
  color: #d46a7a;
}

/* Hero with background image */
.hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  background-image: url('hero-about.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38); /* dark overlay for readability */
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 90%;
  padding: 1.5rem;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: bold;
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Story */
.story {
  padding: 4rem 6%;
  text-align: center;
  background-color: #fff;
}

.story h2 {
  font-size: clamp(2rem, 5.5vw, 3rem);
  margin-bottom: 1.8rem;
  color: #333;
}

.story p {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  max-width: 720px;
  margin: 0 auto;
  color: #444;
}

/* Values */
.values {
  padding: 4rem 6%;
  text-align: center;
  background-color: #f9e4d4;
}

.values h2 {
  font-size: clamp(2rem, 5.5vw, 3rem);
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}

.value-item {
  max-width: 320px;
}

.value-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.value-item h3 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  margin: 0.8rem 0 0.6rem;
  color: #333;
}

.value-item p {
  font-size: 1.1rem;
  color: #555;
}

/* Maker */
.maker {
  padding: 4rem 6%;
  text-align: center;
  background-color: #fff;
}

.maker h2 {
  font-size: clamp(2rem, 5.5vw, 3rem);
  margin-bottom: 2.5rem;
}

.maker-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 3.5rem;
}

.maker-content img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  object-fit: cover;
}

.maker-text {
  text-align: left;
  max-width: 55%;
}

.maker-text h3 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  margin: 0 0 1.2rem;
  color: #333;
}

.maker-text p {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: #444;
}

/* Footer */
footer {
  padding: 2rem 6%;
  background-color: #f7cdd0;
  text-align: center;
}

footer p {
  margin: 0.8rem 0;
  font-size: 1.1rem;
}

footer a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

footer img {
  width: 32px;
  vertical-align: middle;
  margin-right: 0.6rem;
}

/* ────────────────────────────────────────
   Mobile adjustments – keep warmth & readability
───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    height: 45vh;
    min-height: 320px;
  }

  .maker-content {
    flex-direction: column;
    gap: 2.5rem;
  }

  .maker-text {
    max-width: 100%;
    text-align: center;
  }

  .values-grid {
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  header {
    padding: 1.2rem 5%;
  }

  nav {
    gap: 1rem 1.4rem;
  }

  .story, .values, .maker {
    padding: 3rem 7%;
  }

  .value-item img {
    width: 56px;
    height: 56px;
  }
}