* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", serif;
  background: #f8f4ed;
  color: #2c2c2a;
  line-height: 1.85;
  font-size: 1.09rem;
}

header {
  text-align: center;
  padding: 2.8rem 1rem 2rem;
  background: #2c2c2a;
  color: #f0d9b0;
  border-bottom: 1px solid #d4b88a;
}

header a {
  color: #d4b88a;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.meta {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #8c6642;
  letter-spacing: 1px;
  margin-bottom: 1.8rem;
}

h1 {
  font-size: 2.55rem;
  line-height: 1.25;
  margin-bottom: 2.2rem;
  color: #2c2c2a;
}

h2 {
  font-size: 1.65rem;
  margin: 3.2rem 0 1.3rem;
  color: #2c2c2a;
  font-weight: 500;
}

p {
  margin-bottom: 1.55rem;
}

.cta-box {
  background: #f0e9d9;
  border-left: 5px solid #8c6642;
  padding: 2.2rem 2rem;
  margin: 3.5rem 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 5px 20px rgba(140, 102, 66, 0.1);
}

.cta-box p {
  margin-bottom: 1.3rem;
  font-size: 1.18rem;
}

.cta-box a {
  display: inline-block;
  background: #2c2c2a;
  color: #f8f4ed;
  padding: 14px 34px;
  font-size: 1.05rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-box a:hover {
  background: #8c6642;
  transform: translateY(-3px);
}

footer {
  text-align: center;
  padding: 3.5rem 1rem 2.5rem;
  background: #2c2c2a;
  color: #d4b88a;
  font-size: 1.05rem;
}

footer a {
  color: #d4b88a;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  .wrap {
    padding: 3rem 1.2rem 4rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
