:root {
  --bg: #f8f5f1;
  --text: #1f1f1f;
  --muted: #666;
  --accent: #1f6f5f;
  --accent-dark: #155246;
  --card: #ffffff;
  --border: #e6dfd7;
  --shadow: 0 12px 40px rgba(0,0,0,0.08);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 16px; color: var(--muted); }
ul { color: var(--muted); }
li { margin-bottom: 8px; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248,245,241,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.logo span { color: var(--accent); }

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu a {
  color: var(--muted);
  font-weight: 700;
}

.menu a:hover,
.menu a.active { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff !important;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent) !important;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff !important;
}

.hero { padding: 72px 0 42px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.panel,
.card,
.contact-card,
.embed-card,
.legal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  min-height: 500px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(31,111,95,0.08), rgba(31,31,31,0.12)),
    url('https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.hero-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.15rem, 4vw, 4.35rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: 1.22rem; }

section { padding: 42px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card, .contact-card, .legal-box { padding: 28px; }

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.list-item {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fcfbf9;
}

.list-item strong,
.contact-card strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.embed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.embed-card {
  padding: 18px;
  overflow: hidden;
}

.instagram-placeholder {
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border: 1px dashed var(--border);
  border-radius: 18px;
  background: #fcfbf9;
}

.embed-card blockquote.instagram-media {
  min-width: unset !important;
  width: 100% !important;
  margin: 0 !important;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.legal-content h2 {
  margin-top: 32px;
}

.legal-content h3 {
  margin-top: 22px;
}

.legal-content a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
}

.notice {
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  background: #eef7f4;
  border-radius: 14px;
  margin-bottom: 24px;
}

footer {
  padding: 30px 0 50px;
  color: var(--muted);
}

.footer-box {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
  padding: 22px;
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cookie-preferences {
  display: none;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.cookie-preferences.show { display: block; }

.cookie-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.cookie-row input {
  width: auto;
  margin-top: 5px;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .about-grid,
  .contact-grid,
  .embed-grid {
    grid-template-columns: 1fr;
  }

  .hero-image { min-height: 380px; }
}

@media (max-width: 760px) {
  .mobile-toggle { display: inline-flex; }

  .menu {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .menu.open { display: flex; }

  .section-head,
  .footer-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .card,
  .contact-card,
  .legal-box {
    padding: 24px;
  }
}