body {
  margin: 0;
  font-family: Georgia, serif;
  color: #2e2a28;

  background: #6e6058;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
  margin-top: 50px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("../img/bg-pattern.svg");
  background-repeat: repeat;
  background-size: 600px 600px;

  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

.page-wrap {
  max-width: 800px;
  margin: 4rem auto;
  background: #f4eee9;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.08);

  border-radius: 2px;
}

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

main {
  margin: auto;
  padding: 4rem 2rem;
}

.intro {
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 2rem;
  margin: auto;
}

.lead {
  margin: 1.5rem 0;
}

.two-cols,
.three-cols {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.two-cols {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.two-cols p {
  text-align: center;
}

.three-cols {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

.three-cols a {
  display: inline-block;
  margin-top: 1rem;

  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #4a3a33;
  opacity: 0.85;

  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 2px;

  transition:
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.three-cols a:hover {
  opacity: 1;
  border-color: #6b1f2b;
}

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

article p {
  margin-top: 1rem;
  font-size: 0.9rem;
}

footer {
  padding: 3rem 2rem 4rem;
  background: transparent;
}

.legal a {
  opacity: 0.7;
}

.navbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
}

.nav-inner {
  max-width: 900px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links,
.nav-social {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
}

/* Mobile */
@media (max-width: 600px) {
  .nav-inner {
    flex-direction: column;
    gap: 1rem;
  }
}

/* FORM STYLING */

.form-section {
  max-width: 460px;
  margin: 4rem auto 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.form-section input:not([type="checkbox"]),
.form-section textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);

  padding: 10px 4px;
  margin-bottom: 2rem;

  font-family: inherit;
  font-size: 0.9rem;
  color: #2e2a28;
}

.form-section textarea {
  resize: vertical;
  min-height: 120px;
}

.form-section ::placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-style: italic;
}

.form-section input:focus,
.form-section textarea:focus {
  outline: none;
  border-bottom-color: #6b1f2b;
}

.form-section button {
  background: transparent;
  border: 1px solid #6b1f2b;
  color: #6b1f2b;

  padding: 10px 28px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.form-section button:hover {
  background: #6b1f2b;
  color: #fff;
}

.form-message {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-style: italic;
  color: #4a3a33;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin: 2rem 10px 2.5rem; /* ← 10px left & right */
  padding: 0;

  font-size: 0.75rem;
  line-height: 1.4;
  color: #4a3a33;
}

.privacy-check input {
  margin-top: 3px;
  accent-color: #6b1f2b;
  cursor: pointer;
}

.privacy-check a {
  color: #6b1f2b;
  text-decoration: underline;
}

.privacy-check a:hover {
  opacity: 0.8;
}

/* SOCIAL ICONS */

.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  opacity: 1; /* always full opacity */
}

.nav-social img {
  width: 18px;
  height: auto;
  display: block;

  transform: rotate(0deg) scale(1);
  transition: transform 0.25s ease;
}

.nav-social a:hover img {
  transform: rotate(30deg) scale(1.12);
}
