:root {
  --ink: #161616;
  --muted: #676767;
  --paper: #f7f4ee;
  --card: #ffffff;
  --line: #ddd6ca;
  --accent: #b8323a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 6vw;
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

.cart,
.card button,
.button {
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.cart {
  padding: 10px 14px;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.1));
  content: "";
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 6vw 8vw;
  color: #fff;
}

.hero-text p,
.section-head p,
.about div p {
  margin: 0 0 10px;
  color: #f0c66a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: Georgia, serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.95;
}

.hero-text span {
  display: block;
  margin: 20px 0 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.section {
  padding: 70px 6vw;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2,
.about h2,
.contact h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #eee8df;
}

.card div {
  padding: 18px;
}

.artist {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.card h3 {
  margin-bottom: 12px;
}

.card span {
  display: block;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 800;
}

.card button {
  width: 100%;
  min-height: 42px;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  padding: 70px 6vw;
  background: #fff;
}

.about > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact {
  padding: 70px 6vw;
}

form {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin-top: 24px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 6vw;
  background: var(--ink);
  color: #fff;
}

footer span {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 800px) {
  .header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .grid,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }
}
