* {
  box-sizing: border-box;
}

:root {
  --bg: #fbf5ec;
  --cream: #fffaf3;
  --brown: #402819;
  --rust: #a65d35;
  --gold: #e3b071;
  --text: #241914;
  --muted: #6f625a;
  --line: #ead9c6;
  --shadow: 0 20px 50px rgba(64, 40, 25, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Times New Roman, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.brand {
  font-weight: 900;
  color: var(--brown);
  font-size: 1.15rem;
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 700;
}

.nav-cta {
  background: var(--brown);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 90px 6%;
  background:
    linear-gradient(90deg, rgba(64, 40, 25, 0.90), rgba(64, 40, 25, 0.50)),
    url("https://unsplash.com/photos/lNDdGYj85Fc?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-text {
  max-width: 780px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.18rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
}

.primary {
  background: var(--rust);
  color: white;
}

.secondary {
  border: 1px solid rgba(255,255,255,0.75);
  color: white;
}

.hero-card {
  background: rgba(255, 250, 243, 0.94);
  color: var(--text);
  padding: 32px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  color: var(--brown);
  font-size: 2rem;
}

.hero-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 24px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 18px;
}

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

.product-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-card h3,
.product-card p,
.product-card span {
  margin-left: 22px;
  margin-right: 22px;
}

.product-card h3 {
  margin-top: 20px;
  color: var(--brown);
  font-size: 1.35rem;
}

.product-card p {
  color: var(--muted);
}

.product-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--rust);
  font-weight: 900;
}

.image {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.image-one {
  background-image: url("https://unsplash.com/photos/yL2h8JXbi0E?auto=format&fit=crop&w=900&q=80");
}

.image-two {
  background-image: url("https://unsplash.com/photos/ta69ALAeIi8?auto=format&fit=crop&w=900&q=80");
}

.image-three {
  background-image: url("https://unsplash.com/photos/LrTxPer7JLs?auto=format&fit=crop&w=900&q=80");
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.feature-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.use-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.use-list div {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(64, 40, 25, 0.08);
}

.use-list strong {
  display: block;
  color: var(--rust);
  font-size: 0.82rem;
}

.use-list span {
  font-weight: 900;
  color: var(--brown);
}

.about {
  text-align: center;
  max-width: 850px;
}

.about p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.request {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.request-text p {
  color: var(--muted);
}

form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

label {
  display: block;
  margin-bottom: 18px;
  font-weight: 900;
  color: var(--brown);
}

input,
textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d6c0a8;
  border-radius: 16px;
  background: white;
  padding: 14px;
  font: inherit;
}

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

button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--rust);
  color: white;
  padding: 15px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

footer {
  background: var(--brown);
  color: white;
  text-align: center;
  padding: 34px 20px;
}

footer p {
  margin-bottom: 4px;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
  }

  nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.9rem;
  }

  .hero,
  .feature-section,
  .request,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    padding: 64px 22px;
  }

  .section {
    padding: 64px 20px;
  }

  .use-list {
    grid-template-columns: 1fr;
  }
}
