@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;600&display=swap");

:root {
  --primary: #c79b63;
  --accent: #2d2a32;
  --background: #f5f2eb;
  --highlight: #d78928;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.footer-bottom .legal-links  {
flex-direction: row;
}
body {
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--accent);
  background: var(--background);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

header {
  position: sticky;
  top: 0;
  background: rgba(245, 242, 235, 0.98);
  backdrop-filter: blur(6px);
  min-height: 70px;
  z-index: 1000;
  border-bottom: 1px solid rgba(45, 42, 50, 0.08);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--accent);
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.3rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(45, 42, 50, 0.18);
  background: var(--highlight);
}

main {
  overflow: hidden;
}

section {
  padding: 3.5rem 0;
  margin: 2rem 0;
}

.hero {
  margin-top: 0 !important;
  padding: 5rem 0;
  position: relative;
  background: linear-gradient(120deg, rgba(199, 155, 99, 0.22), rgba(45, 42, 50, 0.2)), url("../images/hero-wood.jpg") center/cover fixed;
  color: #fff;
}

.hero-content {
  max-width: 580px;
  display: grid;
  gap: 1.5rem;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #fff;
  padding: 1.3rem;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.75rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
}

.pill {
  padding: 0.35rem 0.8rem;
  background: rgba(199, 155, 99, 0.15);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.9rem;
}

.image-stack {
  position: relative;
  overflow: hidden;
}

.parallax {
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.footer {
  background: #111;
  color: #f3f3f3;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-top {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer a {
  color: #f3f3f3;
  display: block;
  margin: 0.35rem 0;
}

.footer-top > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-top > div > a {
  display: block;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 1.2rem;
  font-size: 0.95rem;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid rgba(45, 42, 50, 0.15);
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

.banner {
  background: linear-gradient(120deg, rgba(199, 155, 99, 0.2), rgba(45, 42, 50, 0.2));
  color: #fff;
  padding: 2rem;
  border-radius: 16px;
}

.policy-page {
  padding-left: 1rem;
  padding-right: 1rem;
}

.policy-page h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.policy-page h2 {
  margin: 1.2rem 0 0.6rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
}

.policy-page p,
.policy-page li {
  margin-bottom: 0.7rem;
}

.hero-subtle {
  background: linear-gradient(90deg, rgba(199, 155, 99, 0.12), rgba(45, 42, 50, 0.05));
  border-radius: 18px;
  padding: 2rem;
}

.list-inline {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.popup {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: #fff;
  padding: 1.2rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  width: min(360px, 90%);
  z-index: 1200;
  display: none;
}

.popup.active {
  display: block;
}

.popup-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid rgba(45, 42, 50, 0.15);
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  margin: 4px 0;
}

@media (max-width: 900px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  body {
    hyphens: auto;
  }
  .brand {
    font-size: 1rem;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: min(280px, 90vw);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: inline-block;
  }
  .hero {
    background-attachment: scroll;
  }
  .section-header {
    align-items: flex-start;
  }
}

.full-height {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.thank-you-section {
  background: linear-gradient(135deg, rgba(199, 155, 99, 0.08) 0%, rgba(245, 242, 235, 0.95) 50%, rgba(199, 155, 99, 0.05) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.thank-you-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(199, 155, 99, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.thank-you-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.thank-you-icon {
  margin: 0 auto;
  animation: scaleIn 0.6s ease-out;
}

.thank-you-icon svg {
  filter: drop-shadow(0 4px 12px rgba(199, 155, 99, 0.3));
}

.thank-you-header {
  display: grid;
  gap: 1rem;
}

.thank-you-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: fit-content;
  margin: 0 auto;
}

.thank-you-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--accent);
  margin: 0;
}

.thank-you-date {
  color: rgba(45, 42, 50, 0.6);
  font-size: 0.95rem;
}

.thank-you-message {
  display: grid;
  gap: 1rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
}

.thank-you-message p {
  line-height: 1.7;
  color: var(--accent);
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thank-you-info {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(45, 42, 50, 0.1);
  font-size: 0.9rem;
  color: rgba(45, 42, 50, 0.7);
}

.thank-you-info span {
  color: var(--accent);
  font-weight: 600;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .thank-you-content {
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .thank-you-message {
    text-align: center;
    padding: 1.2rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
    text-align: center;
  }
}

