:root {
  --bg: #f7f2ed;
  --surface: #ffffff;
  --text: #221813;
  --muted: #66564c;
  --primary: #4e2f1d;
  --primary-soft: #8b644c;
  --line: #e5d7cc;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  min-height: 90vh;
  background: linear-gradient(
      130deg,
      rgba(20, 13, 10, 0.82),
      rgba(39, 22, 12, 0.58)
    ),
    url("./asset5.jpg") center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.nav {
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content {
  flex: 1;
  display: grid;
  align-content: center;
  padding: 4rem 0;
  gap: 1rem;
  max-width: 650px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--primary-soft);
}

.hero .eyebrow {
  color: #e7c2ab;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 2.7vw, 2.4rem);
  margin-top: 0.5rem;
}

.hero-copy {
  margin: 0;
  color: #f3e9e2;
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-size: 0.93rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #fff;
  color: #2d1a10;
}

.btn-primary:hover {
  background: #f0e6df;
}

.btn-ghost,
.btn-nav {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover,
.btn-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-login {
  background: #fff;
  color: #2d1a10;
}

.btn-login:hover {
  background: #f0e6df;
}

.section {
  padding: 5.3rem 0;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.story-image-wrap {
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(44, 25, 14, 0.2);
}

.story-content p {
  color: var(--muted);
  line-height: 1.8;
  margin: 1rem 0 0;
}

.process {
  background: #efe6de;
}

.process h2 {
  max-width: 18ch;
}

.cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: var(--surface);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(70, 41, 24, 0.08);
}

.card img {
  height: 210px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.05rem;
  margin: 1rem 1rem 0.45rem;
}

.card p {
  margin: 0 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.gallery-head {
  max-width: 560px;
}

.masonry {
  margin-top: 1.8rem;
  columns: 2 320px;
  gap: 1rem;
}

.masonry img {
  margin-bottom: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
}

.footer {
  border-top: 1px solid var(--line);
  background: #f2e8de;
}

.footer-content {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  margin: 0;
  font-weight: 600;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 920px) {
  .story {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 82vh;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }
}
