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

body {
  background: linear-gradient(170deg, #ecfdf5, #f0fdf4);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, .site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #222;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

a {
  color: #166534;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.section {
  padding: 64px 0;
}

.btn {
  display: inline-block;
  background: #166534;
  color: #fff;
  border-radius: 20px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  text-decoration: none;
  line-height: 1.5;
}

.btn:hover {
  opacity: 0.85;
  text-decoration: none;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-small {
  padding: 6px 18px;
  font-size: 14px;
}

.muted-text {
  color: #808080;
  font-size: 14px;
}

.hidden {
  display: none;
}

/* Cookie Banner */
.cookie-banner {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 14px;
  margin: 0;
}

/* Navbar */
.navbar {
  background: transparent;
  padding: 16px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-logo {
  font-size: 1.5rem;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo:hover {
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
}

/* Hero */
.hero-content {
  max-width: 60%;
}

.hero-content h1 {
  margin-bottom: 16px;
}

.hero-content p {
  margin-bottom: 24px;
  font-size: 17px;
}

/* About */
.about-content {
  max-width: 800px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-content h3 {
  margin-top: 24px;
}

.features-list {
  list-style: disc;
  padding-left: 24px;
}

.features-list li {
  margin-bottom: 8px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Card */
.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 16px rgba(0, 0, 0, 0.07);
}

/* Download */
.download-content {
  max-width: 800px;
}

.download-content p {
  margin-bottom: 16px;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* Contact */
.contact-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.contact-card {
  padding: 32px;
}

.contact-subtitle {
  margin-bottom: 24px;
  color: #808080;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
}

.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Raleway', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.form-group input:focus {
  border-color: #166534;
  box-shadow: 0 0 0 2px rgba(22, 101, 52, 0.125);
}

.form-success {
  margin-top: 16px;
  padding: 12px;
  background: rgba(22, 101, 52, 0.08);
  border-radius: 6px;
  color: #166534;
  font-size: 14px;
  text-align: center;
}

/* Footer */
.footer {
  padding: 32px 0;
  text-align: center;
}

.footer p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #808080;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.footer-links a {
  font-size: 14px;
}

/* Legal pages */
.legal-content {
  max-width: 800px;
  padding: 32px 0 64px;
}

.legal-content h1 {
  margin-bottom: 24px;
  font-size: 2.25rem;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-content li {
  margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .navbar-inner {
    gap: 20px;
    flex-wrap: wrap;
  }

  .nav-links {
    gap: 16px;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-buttons .btn {
    text-align: center;
  }

  .contact-card {
    padding: 24px;
  }

  .section {
    padding: 48px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}