

:root {
  --c-bg: #f9f8f5;
  --c-fg: #2a2a24;
  --c-muted: #a39e94;
  --c-accent: #1b6b4d;
  --c-accent-light: #d8e8e3;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --font-display: 'Georgia', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--c-fg);
  background-color: var(--c-bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  display: block;
  max-width: 100%;
}

header {
  padding: var(--space-4) 0;
  border-bottom: 1px solid #e8e5de;
  background-color: var(--c-bg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo-svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-fg);
}

.content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-4);
}

.content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--c-fg);
  margin-bottom: var(--space-4);
  text-align: center;
}

.content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-fg);
  margin: var(--space-5) 0 var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid #e8e5de;
}

.content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c-fg);
  margin: var(--space-3) 0 var(--space-2);
}

.content p {
  color: var(--c-fg);
  margin-bottom: var(--space-3);
  line-height: 1.8;
  font-size: 0.95rem;
}

.content ul,
.content ol {
  margin: var(--space-3) 0 var(--space-3) var(--space-4);
}

.content li {
  color: var(--c-fg);
  margin-bottom: var(--space-2);
  line-height: 1.8;
}

.content ul li {
  list-style-type: disc;
}

.content ol li {
  list-style-type: decimal;
}

footer {
  padding: var(--space-6) 0 var(--space-4);
  background-color: #f0ebe3;
  border-top: 1px solid #e8e5de;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.footer-section h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--c-fg);
  margin-bottom: var(--space-2);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--space-1);
}

.footer-section a {
  color: var(--c-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--c-accent);
}

.footer-bottom {
  border-top: 1px solid #e8e5de;
  padding-top: var(--space-4);
  text-align: center;
  color: var(--c-muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2a2a24;
  color: #f9f8f5;
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  z-index: 100;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}

.cookie-btn {
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-btn-accept {
  background-color: #1b6b4d;
  color: #fff;
}

.cookie-btn-accept:hover {
  background-color: #155241;
}

.cookie-btn-decline {
  background-color: transparent;
  color: #f9f8f5;
  border: 1px solid #f9f8f5;
}

.cookie-btn-decline:hover {
  background-color: rgba(249, 248, 245, 0.1);
}

@media (max-width: 1024px) {
  .content {
    padding: var(--space-5) var(--space-4);
  }
}

@media (max-width: 640px) {
  :root {
    --space-4: 1.5rem;
    --space-5: 2.5rem;
    --space-6: 3rem;
  }

  header {
    padding: var(--space-3) 0;
  }

  .header-inner {
    padding: 0 var(--space-2);
  }

  .logo-svg {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .content {
    padding: var(--space-4) var(--space-2);
  }

  .content h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }

  .footer-inner {
    padding: 0 var(--space-2);
  }
}

.image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: #e8dcd2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}
