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

body {
  background: linear-gradient(150deg, #ccfbf1, #f0fdfa);
  background-attachment: fixed;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #444;
  line-height: 1.65;
  font-size: 17px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Crimson Pro', serif;
  color: #1a1a1a;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.5rem; }

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

a {
  color: #0d9488;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  padding: 14px 0;
  display: flex;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 14px;
  color: #555;
}

.cookie-banner .btn {
  padding: 8px 20px;
  font-size: 14px;
}

.cookie-banner.hidden {
  display: none;
}

/* Buttons */
.btn {
  background: #0d9488;
  color: #fff;
  border-radius: 6px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  display: inline-block;
}

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

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

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

.site-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

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

.nav-links a:hover {
  color: #0d9488;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  margin: 5px 0;
  transition: transform 0.2s;
}

/* Sections */
.section {
  padding: 64px 0;
}

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

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

.hero-content p {
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.75;
  color: #444;
}

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

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

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

.about-content ul {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 20px;
}

.about-content li {
  margin-bottom: 8px;
  line-height: 1.75;
}

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

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

/* Card */
.card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(2px);
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

/* Download */
.download-section {
  text-align: center;
}

.download-section h2 {
  margin-bottom: 12px;
}

.download-section p {
  margin-bottom: 24px;
  color: #555;
}

.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  background: #1a1a1a;
  color: #fff;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 15px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}

.store-btn:hover {
  opacity: 0.85;
  text-decoration: none;
  color: #fff;
}

.download-note {
  margin-top: 16px;
  font-size: 14px;
  color: #777;
}

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

.contact-card {
  padding: 32px;
}

.contact-card h2 {
  margin-bottom: 4px;
}

.contact-card .subtitle {
  color: #777;
  margin-bottom: 24px;
  font-size: 15px;
}

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

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

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

.form-group input:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 2px rgba(13,148,136,0.125);
}

.btn-submit {
  width: 100%;
  padding: 10px;
  font-weight: 500;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px;
  background: rgba(13,148,136,0.1);
  border-radius: 6px;
  color: #0d9488;
  font-size: 15px;
  text-align: center;
}

.form-success.visible {
  display: block;
}

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

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #777;
  margin: 0 8px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #0d9488;
}

.footer-address {
  margin-top: 8px;
  color: #999;
  font-size: 13px;
}

/* Legal / Extra Pages */
.page-content {
  max-width: 800px;
  padding: 48px 0 64px;
}

.page-content h1 {
  margin-bottom: 24px;
  font-size: 2rem;
}

.page-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.page-content p {
  margin-bottom: 14px;
  line-height: 1.75;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.page-content li {
  margin-bottom: 6px;
  line-height: 1.75;
}

.page-content a {
  color: #0d9488;
}

/* Offering cards grid */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.offerings-grid .card h3 {
  margin-bottom: 8px;
}

/* Cookie settings page */
.cookie-category {
  margin-bottom: 24px;
}

.cookie-category h3 {
  margin-bottom: 6px;
}

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

  .navbar .container {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding-top: 12px;
  }

  .nav-links.open {
    display: flex;
  }

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

  .section {
    padding: 40px 0;
  }

  .contact-card {
    padding: 24px;
  }

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

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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