*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: linear-gradient(160deg, #d9f99d, #f7fee7);
  background-attachment: fixed;
  font-family: 'Raleway', sans-serif;
  color: #444;
  line-height: 1.65;
  font-size: 15px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Cormorant Garamond', serif;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.25rem; margin-bottom: 18px; }
h2 { font-size: 1.4rem; margin-bottom: 14px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }

p { margin-bottom: 14px; }
ul, ol { margin: 0 0 14px 20px; }
li { margin-bottom: 6px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

a { color: #4d7c0f; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Cookie banner */
.cookie-banner {
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.cookie-banner button {
  margin-left: 12px;
  background: #4d7c0f;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: opacity 0.2s;
}
.cookie-banner button:hover { opacity: 0.85; }
.cookie-banner.hidden { display: none; }

/* Navbar */
.navbar { padding: 16px 0; background: transparent; }
.site-logo {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.site-logo a { color: #1a1a1a; text-decoration: none; }
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}
.nav-links a { font-weight: 500; }

/* Sections */
section { padding: 56px 0; }

/* Hero */
.hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 20px;
}
.hero p { color: #444; margin-bottom: 24px; }

/* Buttons */
.btn {
  display: inline-block;
  background: #4d7c0f;
  color: #fff;
  border-radius: 20px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn:hover { opacity: 0.85; text-decoration: none; }

/* About */
.about { max-width: 800px; margin: 0 auto; }

/* Cards / Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.06); }

.section-title { text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: #777; margin-bottom: 24px; }

/* Contact */
.contact-wrap { max-width: 560px; margin: 0 auto; }
.contact-info { text-align: center; margin-bottom: 20px; color: #444; }
.contact-info p { margin-bottom: 6px; }
.contact-card { padding: 32px; }
.contact-card h2 { text-align: center; }
.contact-card .section-sub { margin-bottom: 20px; }

form .field { margin-bottom: 14px; }
label { display: block; font-size: 14px; margin-bottom: 6px; color: #444; }
input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
input:focus { border-color: #4d7c0f; box-shadow: 0 0 0 2px #4d7c0f20; }

.btn-submit {
  width: 100%;
  padding: 12px;
  background: #4d7c0f;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.85; }

.success-msg {
  margin-top: 16px;
  padding: 12px;
  background: rgba(77,124,15,0.1);
  color: #1a1a1a;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}
.success-msg.hidden { display: none; }

/* Footer */
footer {
  text-align: center;
  color: #777;
  padding: 32px 0;
  font-size: 14px;
}
footer a { margin: 0 6px; }

/* Page content */
.page-content { max-width: 800px; margin: 0 auto; }
.page-content h1 { text-align: center; margin-bottom: 24px; }
.page-content h2 { margin-top: 28px; }
.page-content p, .page-content li { color: #444; }

@media (max-width: 768px) {
  h1 { font-size: 1.85rem; }
  .hero { padding: 50px 16px; }
  section { padding: 40px 0; }
  .contact-card { padding: 24px; }
  .nav-links { gap: 14px; font-size: 14px; }
}
