:root {
  --navy-deep: #1b1b3a;
  --navy-dark: #161638;
  --cream: #f5f2ed;
  --white-soft: #fafaf7;
  --sand: #d4a73b;
  --sand-soft: #e8d7a1;
  --bg-muted: #eeeeeb;
  --text: #2e2e2e;
  --text-soft: #5b5b5d;
  --line: rgba(27, 27, 27, 0.12);
  --shadow: 0 18px 45px rgba(17, 17, 27, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--white-soft);
  color: var(--text);
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}

main {
  display: block;
}

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

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(212, 167, 59, 0.9);
  outline-offset: 3px;
}

@supports not (backdrop-filter: blur(10px)) {
  .site-header {
    background: rgba(250, 250, 247, 0.98);
  }
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}

p,
ul,
ol {
  margin-top: 0;
}

.container {
  width: min(1200px, calc(100% - 56px));
  margin: 0 auto;
}

.section-light,
.section-muted {
  padding: 88px 0;
}

.section-light {
  background: var(--white-soft);
}

.section-muted {
  background: var(--bg-muted);
}

.kicker,
.kicker-box,
.card-label,
.eco-tag,
.book-meta,
.news-label,
.language-switcher,
.lang-link {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 27, 27, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  color: var(--navy-deep);
  font-weight: 600;
}

.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav a:focus-visible {
  color: var(--navy-deep);
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.2rem 0.4rem;
  border: 1px solid rgba(27, 27, 27, 0.12);
  background: rgba(255, 255, 255, 0.24);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  padding: 0.45rem 0.45rem;
  color: var(--navy-deep);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-link:hover,
.lang-link:focus-visible,
.lang-link.active {
  background: rgba(212, 167, 59, 0.15);
  color: var(--navy-deep);
}

.avatar-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 167, 59, 0.6);
  background: rgba(212, 167, 59, 0.12);
  color: var(--navy-deep);
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(27, 27, 27, 0.12);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy-deep);
}

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

.kicker-box {
  display: inline-flex;
  border: 1px solid rgba(27, 27, 27, 0.14);
  background: rgba(255, 255, 255, 0.3);
  padding: 0.7rem 0.9rem;
  margin-bottom: 18px;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 4.25vw, 5.2rem);
  margin-bottom: 20px;
}

.lead {
  max-width: 660px;
  color: var(--text-soft);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  padding: 18px 16px;
  box-shadow: 0 8px 20px rgba(17, 17, 27, 0.02);
}

.card-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--sand);
}

.mini-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy-deep);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(27, 27, 27, 0.12);
  color: var(--navy-deep);
}

.button-light {
  background: #fff;
  color: var(--navy-deep);
}

.portrait-wrapper {
  position: relative;
  width: min(100%, 420px);
  margin-left: auto;
  border: 1px solid rgba(212, 167, 59, 0.8);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #f4efe8 0%, #d8d1c6 100%);
}

.portrait-wrapper::after {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 110px;
  height: 110px;
  border-left: 2px solid rgba(212, 167, 59, 0.75);
  border-bottom: 2px solid rgba(212, 167, 59, 0.75);
  z-index: 0;
  border-bottom-left-radius: 14px;
}

.portrait-wrapper img {
  width: 100%;
  display: block;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  border-radius: 18px;
}

.portrait-globe {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  width: 54px;
  height: 54px;
  background: rgba(212, 167, 59, 0.12);
  border: 1px solid rgba(212, 167, 59, 0.8);
  display: grid;
  place-items: center;
  color: var(--navy-deep);
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(16, 21, 36, 0.08);
}

.vision-approach {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1200px, calc(100% - 56px));
  margin: -14px auto 0;
  position: relative;
  z-index: 2;
}

.vision-block {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 27, 27, 0.1);
  box-shadow: 0 12px 28px rgba(17, 17, 27, 0.04);
  padding: 28px 24px;
}

.vision-block h3 {
  font-size: clamp(2.2rem, 2.4vw, 3rem);
  margin: 10px 0 12px;
}

.vision-block p:last-child {
  margin: 0;
  color: var(--text-soft);
}

.journey-section {
  background: rgba(247, 242, 234, 0.9);
  padding: 42px 0 24px;
}

.journey-layout {
  display: grid;
  grid-template-columns: 2.1fr 2.0fr;
  gap: 48px;
  align-items: start;
}

.journey-copy {
  min-width: 0;
}

.journey-copy .kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  line-height: 1.2;
}

.journey-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.7rem, 3.3vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 580px;
}

.journey-intro {
  margin: 0 0 28px;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: auto;
}

.journey-intro h3 {
    margin: 0 0 12px;
    color: var(--sand);
}

.journey-quote {
  margin: 0 0 26px;
  padding: 18px 20px 16px 20px;
  background: rgba(212, 167, 59, 0.12);
  border-left: 4px solid var(--sand);
  color: var(--navy-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.5rem, 1.5vw, 1.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  font-style: italic;
  max-width: 640px;
}

.journey-quote::before {
  content: "“";
  display: inline-block;
  margin-right: 6px;
  color: var(--sand);
}

.journey-quote::after {
  content: "”";
  display: inline-block;
  margin-left: 6px;
  color: var(--sand);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
  position: relative;
}

.journey-step {
  display: grid;
  gap: 10px;
  padding: 12px 12px 0 0;
  border-top: 1px solid rgba(27, 27, 27, 0.08);
  min-height: 150px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 167, 59, 0.8);
  color: var(--sand);
  background: rgba(212, 167, 59, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
}

.journey-step h3 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.05;
}

.journey-step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 0.82rem;
}

.journey-portrait {
  position: relative;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  min-height: 520px;
  order: 1;
  margin-top: 18px;
}

.journey-portrait img {
  display: block;
  width: min(100%, 470px);
  height: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: none;
}

@media (max-width: 560px) {
  .journey-portrait img {
    max-height: 360px;
  }
}

@media (max-width: 980px) {
  .journey-layout,
  .journey-columns,
  .journey-feature-list,
  .journey-bottom {
    grid-template-columns: 1fr;
  }

  .journey-copy h2 {
    max-width: 100%;
  }

  .journey-portrait {
    min-height: 420px;
  }
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 3vw, 4rem);
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered .subheading {
  margin-left: auto;
  margin-right: auto;
}

.subheading {
  max-width: 820px;
  color: var(--text-soft);
  font-size: 1.04rem;
  margin-top: 12px;
}

.impact-shell {
  background: linear-gradient(180deg, rgba(20, 23, 42, 0.98), rgba(16, 20, 37, 1));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 52px 42px 36px;
  color: #fff;
  box-shadow: 0 18px 42px rgba(17, 17, 27, 0.08);
}

.impact-header {
  margin-bottom: 30px;
}

.impact-header .kicker {
  color: var(--sand);
  margin-bottom: 16px;
}

.impact-header h2 {
  color: #fff;
  font-size: clamp(2.3rem, 3.2vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  max-width: 900px;
}

.impact-body {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 28px;
}

.impact-intro {
  padding-top: 12px;
}

.impact-rule {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--sand);
  margin-bottom: 18px;
}

.impact-intro p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.7;
}

.impact-intro p:first-of-type {
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: #fff;
  font-weight: 600;
}

.impact-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.impact-result {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 18px 16px;
  min-height: 160px;
}

.result-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--sand);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.impact-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
  font-size: 0.95rem;
}

.impact-metrics {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.impact-metrics h3 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-item {
  background: rgba(212, 167, 59, 0.08);
  border: 1px solid rgba(212, 167, 59, 0.5);
  color: #fff;
  padding: 14px 12px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.eco-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  padding: 26px 20px;
  box-shadow: 0 10px 24px rgba(17, 17, 27, 0.02);
}

.eco-tag {
  display: inline-block;
  color: var(--sand);
  margin-bottom: 10px;
}


.eco-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.eco-card span {
  margin-left: 20px;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.book-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  padding: 18px 18px 16px;
  box-shadow: 0 12px 26px rgba(17, 17, 27, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(17, 17, 27, 0.05);
}

.book-card img {
  display: block;
  width: min(72%, 220px);
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin: 0 auto 18px;
  border-radius: 18px;
  border: 1px solid rgba(27, 27, 27, 0.08);
  box-shadow: 0 8px 18px rgba(17, 17, 27, 0.08);
}

.book-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 1.8vw, 2.2rem);
  line-height: 1.05;
  color: var(--navy-deep);
}

.book-card p {
  width: 100%;
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.book-card .button {
  margin-top: auto;
  width: fit-content;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 0;
}

.tags span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 27, 27, 0.1);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  color: var(--navy-deep);
}

.cta-band {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-dark));
  color: #fff;
  padding: 42px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.gallery-filter-btn {
  border: 1px solid rgba(27, 27, 27, 0.12);
  background: transparent;
  color: var(--navy-deep);
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover,
.gallery-filter-btn:focus-visible {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--navy-deep);
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(17, 17, 27, 0.06);
  background: #f3f1ee;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  display: none;
}

.gallery-item:not([data-gallery-category]) {
  display: none;
}

.gallery-item.gallery-card {
  min-height: 0;
  transform: none;
}

.gallery-item.gallery-card img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item.tall-item {
  min-height: 420px;
}

.gallery-item.wide-item {
  min-height: 260px;
}

.gallery-item:nth-child(3n) {
  transform: none;
}

.gallery-item:nth-child(4n) {
  transform: none;
}

.gallery-overlay {
  position: absolute;
  inset: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(17, 17, 27, 0.18);
  backdrop-filter: blur(2px);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-within .gallery-overlay {
  opacity: 1;
  background: rgba(17, 17, 27, 0.22);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.gallery-overlay span {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
}

.gallery-overlay h3 {
  color: #fff;
  font-size: clamp(1.6rem, 1.8vw, 2.2rem);
  margin: 0 0 8px;
}

.gallery-overlay p {
  margin: 0;
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.5;
}

.testimonial-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-btn {
  border: 1px solid rgba(27, 27, 27, 0.12);
  background: transparent;
  color: var(--navy-deep);
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--navy-deep);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 18px;
  align-items: center;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(27, 27, 27, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 2rem;
  display: grid;
  place-items: center;
}

.testimonial-window {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: all 0.35s ease;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 27, 27, 0.1);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.quote-mark {
  color: var(--sand);
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 0.8;
  margin-bottom: 0.25rem;
}

.testimonial-slide p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.05;
  color: var(--navy-deep);
  font-style: italic;
  margin: 0 0 18px;
}

.testimonial-slide .person {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-slide .person strong {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.testimonial-slide .person span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(27, 27, 27, 0.2);
  cursor: pointer;
}

.dot.active {
  background: var(--sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(3rem, 3.7vw, 4.4rem);
  max-width: 620px;
  margin-bottom: 16px;
}

.contact-copy .subheading {
  margin-top: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 1rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sand);
  font-weight: 700;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(17, 17, 27, 0.02);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(27, 27, 27, 0.12);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.95rem 1rem;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(212, 167, 59, 0.8);
}

.form-meta {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.form-meta a {
  color: var(--navy-deep);
  text-decoration: underline;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 38px 0 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.footer-brand {
  grid-column: 1;
  grid-row: 1;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.footer-links {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  gap: 4px;
  font-size: 0.84rem;
  font-style: normal;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact a {
  color: #fff;
}

.footer-linkedin {
  grid-column: 2;
  grid-row: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
}

.footer-linkedin svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .journey-layout,
  .impact-body,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .section-light,
  .section-muted {
    padding: 72px 0;
  }

  .header-inner {
    flex-wrap: wrap;
    min-height: 72px;
    padding: 12px 0;
    align-items: center;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    display: grid;
    gap: 12px;
    padding: 16px 0 8px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .vision-approach,
  .mini-cards,
  .impact-results,
  .metrics-grid,
  .ecosystem-grid,
  .books-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

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

  .gallery-item:nth-child(3n),
  .gallery-item:nth-child(4n) {
    transform: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .brand {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .header-tools {
    margin-left: auto;
  }

  .language-switcher {
    display: inline-flex;
    gap: 2px;
  }

  .lang-link {
    min-width: 1.9rem;
    padding: 0.35rem 0.35rem;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 10vw, 4.1rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .mini-card {
    padding: 16px 14px;
  }

  .vision-block,
  .impact-shell,
  .contact-form-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading h2,
  .contact-copy h2,
  .journey-copy h2,
  .impact-header h2,
  .cta-band h3 {
    line-height: 0.96;
  }

  .portrait-wrapper,
  .portrait-wrapper img {
    min-height: 420px;
  }

  .journey-steps,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-linkedin {
    grid-column: auto;
    grid-row: auto;
  }

  .testimonial-slide {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
