:root {
  --bg: #f4f0e8;
  --text: #1d1d1b;
  --muted: #68645d;
  --line: #d8d0c3;
  --accent: #6b3f2a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  padding: 32px;
  border-bottom: 1px solid var(--line);
}

.home-header {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex: 1;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
}
nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 16px;
}

nav a:hover {
  color: var(--accent);
}


.language-switcher {
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.language-switcher a {
  color: var(--text);
  text-decoration: none;
  margin: 0 4px;
}

.language-switcher a:hover {
  color: var(--accent);
}

.language-switcher span {
  color: var(--muted);
}

.logo {
  font-weight: 700;
}

.logo a {
  margin-left: 0;
}

.hero {
  max-width: 1000px;
  padding-bottom: 6vh;
}

h1 {
  font-size: clamp(54px, 10vw, 130px);
  line-height: 0.9;
  margin: 0 0 36px;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.home-title {
  font-size: clamp(54px, 12vw, 150px);
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  font-weight: 400;
  margin: 0 0 36px;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 18px;
}

p {
  font-size: 21px;
  max-width: 900px;
  margin: 0 0 24px;
}

ul {
  font-size: 21px;
  max-width: 900px;
  margin: 0 0 32px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

main {
  padding: 0 32px;
}

section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.small {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.subtitle {
  font-size: clamp(24px, 4vw, 46px);
  line-height: 1.1;
  max-width: 900px;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.card {
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 180px;
  background: rgba(255,255,255,0.22);
}

.card p {
  font-size: 18px;
  margin: 0;
}
p a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

p a:hover {
  color: var(--accent);
}
.button {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 22px;
  border: 1px solid var(--text);
  color: var(--text);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button:hover {
  background: var(--text);
  color: var(--bg);
}

footer {
  padding: 40px 32px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 760px) {
  header {
  position: relative;
  padding: 32px;
  border-bottom: 1px solid var(--line);
}

  .home-header {
    min-height: 86vh;
  }

 .top-bar {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

nav {
  align-items: flex-start;
  flex-direction: column;
}

.language-switcher {
  font-size: 12px;
}

  nav a {
    display: inline-block;
    margin-left: 0;
    margin-right: 12px;
    margin-bottom: 8px;
  }



  main {
    padding: 0 22px;
  }

  section {
    padding: 64px 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  p, ul {
    font-size: 19px;
  }
}
.workshop-title {
  font-size: clamp(42px, 7vw, 90px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 0 0 18px;
}

.workshop-subtitle {
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0 0 36px;
}
.home-banner {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-image:
    linear-gradient(
      rgba(244, 240, 232, 0.45),
      rgba(244, 240, 232, 0.45)
    ),
    url("home-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-banner nav,
.home-banner .hero {
  position: relative;
  z-index: 2;
}
.page-banner {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-bottom: 1px solid var(--line);
}

.about-banner {
  background-image:
    linear-gradient(
      rgba(244, 240, 232, 0.45),
      rgba(244, 240, 232, 0.45)
    ),
    url("about-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner nav,
.page-banner .page-hero {
  position: relative;
  z-index: 2;
}

.page-hero {
  max-width: 1000px;
  padding-bottom: 6vh;
}
.community-banner {
  background-image:
    linear-gradient(
      rgba(244, 240, 232, 0.45),
      rgba(244, 240, 232, 0.45)
    ),
    url("community-banner.jpg");
}

.association-banner {
  background-image:
    linear-gradient(
      rgba(244, 240, 232, 0.45),
      rgba(244, 240, 232, 0.45)
    ),
    url("association-banner.jpg");
}

.contact-banner {
  background-image:
    linear-gradient(
      rgba(244, 240, 232, 0.45),
      rgba(244, 240, 232, 0.45)
    ),
    url("contact-banner.jpg");
}