:root {
  --green-950: #071f19;
  --green-900: #0c2c23;
  --green-800: #123d30;
  --green-700: #1b513f;
  --cream: #f5f0e5;
  --cream-strong: #fffaf0;
  --gold: #c7ad73;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--green-950);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--cream-strong);
  color: var(--green-950);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.97);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.16;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}

.language-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(7, 31, 25, 0.18);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-link:hover,
.language-link:focus-visible {
  background: var(--cream-strong);
  color: var(--green-950);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 73vh;
  min-height: 73svh;
  overflow: hidden;
  isolation: isolate;
}

.slideshow,
.slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.slideshow {
  z-index: -3;
  background: var(--green-950);
}

.slide {
  opacity: 0;
  transform: none;
  transition: opacity 1.2s ease;
}

.slide.is-active {
  opacity: 1;
  transform: none;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.18) saturate(1.03);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 18, 14, 0.34) 0%, rgba(3, 18, 14, 0.15) 48%, rgba(3, 18, 14, 0.04) 100%),
    linear-gradient(180deg, rgba(2, 14, 11, 0.18) 0%, rgba(2, 14, 11, 0.01) 44%, rgba(2, 14, 11, 0.30) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: center;
  gap: clamp(48px, 7vw, 120px);
  width: min(1380px, calc(100% - 96px));
  margin: auto;
  padding: 128px 0 92px;
}

.welcome-copy {
  max-width: 820px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 5.8vw, 6.6rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.26);
}

.title-rule {
  width: 110px;
  height: 2px;
  background: var(--gold);
}

.member-card {
  display: block;
  width: 100%;
  max-width: 420px;
  justify-self: end;
  padding: clamp(34px, 3.2vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 4px;
  background: rgba(255, 250, 240, 0.97);
  color: var(--green-950);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.member-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 2.7vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.member-copy > p:not(.card-kicker) {
  max-width: 520px;
  margin-bottom: 28px;
  color: #45534d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
}

.member-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.button {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--green-800);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--green-800);
  color: var(--white);
}

.button-secondary {
  background: transparent;
  color: var(--green-800);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-950);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--green-800);
  color: var(--white);
}

.slider-controls {
  position: absolute;
  right: max(32px, calc((100% - 1380px) / 2));
  bottom: 42px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(7, 31, 25, 0.18);
  color: var(--white);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, color 180ms ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: var(--cream-strong);
  color: var(--green-950);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  bottom: 54px;
  left: max(48px, calc((100% - 1380px) / 2));
  z-index: 5;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  border-top: 3px solid var(--green-950);
  box-shadow: inset 0 18px 28px rgba(0, 0, 0, 0.16);
}

.contact-backdrop,
.contact-shade {
  position: absolute;
  inset: 0;
}

.contact-backdrop {
  z-index: -2;
}

.contact-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.90) saturate(1.02);
}

.contact-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 26, 20, 0.78) 0%, rgba(5, 26, 20, 0.68) 44%, rgba(5, 26, 20, 0.42) 100%);
}

.contact-inner {
  display: flex;
  align-items: center;
  gap: clamp(38px, 6vw, 90px);
  width: min(1180px, calc(100% - 80px));
  min-height: 520px;
  margin: 0 auto;
  padding: 70px 0;
}

.contact-logo {
  width: clamp(150px, 18vw, 240px);
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.4));
}

.contact-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

address {
  display: grid;
  gap: 13px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.65;
}

address a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.9);
  text-decoration-color: rgba(199, 173, 115, 0.7);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

address .address-link {
  text-decoration: none;
}

address a:hover,
address a:focus-visible {
  color: var(--gold);
}

.site-footer {
  display: flex;
  min-height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.68);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-credit {
  color: rgba(255, 255, 255, 0.86);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 42px;
  }

  h1 {
    font-size: clamp(3rem, 5.4vw, 5.3rem);
  }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 40px);
  }

  .brand-name {
    display: none;
  }

  .brand-mark {
    width: 76px;
    height: 76px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(720px, calc(100% - 48px));
    padding: 150px 0 118px;
  }

  .welcome-copy {
    text-align: center;
  }

  .title-rule {
    margin: 0 auto;
  }

  .member-card {
    max-width: 560px;
    justify-self: center;
  }

  .member-copy {
    text-align: center;
  }

  .member-copy > p:not(.card-kicker) {
    margin-right: auto;
    margin-left: auto;
  }

  .slider-controls {
    right: 24px;
    bottom: 32px;
  }

  .scroll-cue {
    left: 24px;
    bottom: 44px;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 28px);
    padding-top: 14px;
  }

  .brand-mark {
    width: 66px;
    height: 66px;
    padding: 6px;
  }

  .language-link {
    min-height: 42px;
    padding: 9px 15px;
    font-size: 0.78rem;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 18, 14, 0.28) 0%, rgba(3, 18, 14, 0.10) 34%, rgba(3, 18, 14, 0.42) 100%),
      linear-gradient(90deg, rgba(3, 18, 14, 0.08), rgba(3, 18, 14, 0.08));
  }

  .hero-content {
    width: calc(100% - 30px);
    padding: 132px 0 112px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
    line-height: 1;
  }

  .member-card {
    padding: 28px 22px;
  }

  .member-copy h2 {
    font-size: 2rem;
  }

  .member-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .button {
    min-height: 56px;
  }

  .scroll-cue {
    display: none;
  }

  .slider-controls {
    right: 50%;
    bottom: 24px;
    transform: translateX(50%);
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-dot {
    width: 16px;
  }

  .contact-section,
  .contact-inner {
    min-height: 620px;
  }

  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 44px);
    padding: 64px 0;
  }

  .contact-logo {
    width: 150px;
  }

  .contact-shade {
    background: rgba(5, 26, 20, 0.52);
  }
}

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

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


.site-header {
  position: relative;
  inset: auto;
  z-index: 20;
  width: 100%;
  min-height: 112px;
  margin: 0;
  padding: 12px max(32px, calc((100% - 1500px) / 2));
  background: var(--green-950);
  border-bottom: 1px solid rgba(199, 173, 115, 0.48);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.site-header .brand-name {
  text-shadow: none;
}

.site-header .language-link {
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  height: clamp(560px, 64svh, 700px);
  min-height: 0;
}

.hero-content {
  padding: 54px 0 82px;
}

.scroll-cue {
  bottom: 34px;
}

.slider-controls {
  bottom: 26px;
}

.section-divider {
  display: grid;
  min-height: 88px;
  place-items: center;
  background: var(--green-950);
  border-top: 1px solid rgba(199, 173, 115, 0.38);
  border-bottom: 1px solid rgba(199, 173, 115, 0.38);
}

.section-divider-mark {
  display: block;
  width: 110px;
  height: 2px;
  background: var(--gold);
}

.contact-section {
  border-top: 0;
}

@media (max-width: 900px) {
  .site-header {
    width: 100%;
    min-height: 96px;
    padding: 10px 24px;
  }

  .brand-name {
    display: inline;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-content {
    padding: 70px 0 118px;
  }

  .section-divider {
    min-height: 72px;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: 100%;
    min-height: 82px;
    padding: 8px 15px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .hero-content {
    padding: 62px 0 108px;
  }

  .section-divider {
    min-height: 58px;
  }

  .section-divider-mark {
    width: 76px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    display: none;
  }
}


.site-header {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: 104px;
  padding: 10px max(32px, calc((100% - 1500px) / 2));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 38px);
  min-width: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

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

.section-divider {
  display: block;
  min-height: 0;
  padding: 30px max(32px, calc((100% - 1380px) / 2));
}

.section-divider-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  width: 100%;
}

.section-divider-copy {
  padding-right: clamp(24px, 4vw, 64px);
  border-right: 1px solid rgba(199, 173, 115, 0.46);
}

.section-divider-kicker {
  margin: 0 0 7px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-divider h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.7vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.section-divider-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.section-divider-actions a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.section-divider-actions a:hover,
.section-divider-actions a:focus-visible {
  border-color: var(--gold);
  background: var(--cream-strong);
  color: var(--green-950);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .site-header {
    gap: 24px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.7rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 94px;
    padding: 9px 24px;
  }

  .site-header .brand-name {
    display: inline;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    width: 100%;
    padding-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section-divider-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-divider-copy {
    padding-right: 0;
    padding-bottom: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 173, 115, 0.46);
    text-align: center;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 82px;
    padding: 8px 15px 10px;
  }

  .site-header .brand-name {
    display: none;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding: 6px 2px 2px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 0.66rem;
  }

  .section-divider {
    padding: 26px 22px;
  }

  .section-divider-actions {
    grid-template-columns: 1fr;
  }

  .section-divider-actions a {
    min-height: 48px;
  }
}


/* Final header and transition spacing */
.site-header {
  position: relative;
  inset: auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 92px;
  margin: 0;
  padding: 14px max(32px, calc((100% - 1500px) / 2));
  background: var(--green-950);
  border: 0;
  box-shadow: none;
}

.site-header .language-link {
  background: rgba(255, 255, 255, 0.04);
}

.section-divider {
  display: block;
  min-height: clamp(300px, 38svh, 440px);
  background: var(--green-950);
  border: 0;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 82px;
    padding: 12px 24px;
  }

  .section-divider {
    min-height: clamp(260px, 34svh, 360px);
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 72px;
    padding: 10px 15px;
  }

  .section-divider {
    min-height: 260px;
  }
}


/* Header with logo and historical presentation section */
.site-header {
  justify-content: space-between;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-header .brand-mark {
  width: 70px;
  height: 70px;
  padding: 6px;
  border-radius: 10px;
}

.site-header .brand-name {
  display: inline;
  color: var(--white);
  text-shadow: none;
}

.section-divider {
  display: grid;
  min-height: clamp(360px, 42svh, 500px);
  place-items: center;
  padding: 72px 32px;
  background: var(--green-950);
  border-top: 1px solid rgba(199, 173, 115, 0.28);
  border-bottom: 1px solid rgba(199, 173, 115, 0.28);
  text-align: center;
}

.section-divider-content {
  width: min(880px, 100%);
}

.section-divider-content .eyebrow {
  margin-bottom: 18px;
}

.section-divider-content h2 {
  margin-bottom: 26px;
  color: var(--cream-strong);
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.05;
}

.section-divider-content > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .site-header .brand-mark {
    width: 62px;
    height: 62px;
  }

  .section-divider {
    min-height: 400px;
    padding: 64px 28px;
  }
}

@media (max-width: 700px) {
  .site-header .brand-mark {
    width: 56px;
    height: 56px;
  }

  .site-header .brand-name {
    display: none;
  }

  .section-divider {
    min-height: 430px;
    padding: 58px 22px;
  }

  .section-divider-content h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section-divider-content > p:last-child {
    font-size: 0.98rem;
    line-height: 1.72;
  }
}

/* Desktop viewport fit: header, slideshow and presentation section */
@media (min-width: 901px) {
  .site-header {
    min-height: 82px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header .brand-mark {
    width: 62px;
    height: 62px;
  }

  .hero {
    height: clamp(500px, 62svh, 680px);
  }

  .hero-content {
    padding-top: 36px;
    padding-bottom: 62px;
  }

  .section-divider {
    min-height: clamp(230px, 27svh, 300px);
    padding: 28px 32px;
  }

  .section-divider-content .eyebrow {
    margin-bottom: 10px;
  }

  .section-divider-content h2 {
    margin-bottom: 14px;
    font-size: clamp(2.1rem, 3.4vw, 3.5rem);
  }

  .section-divider-content > p:last-child {
    font-size: clamp(0.94rem, 1.05vw, 1.05rem);
    line-height: 1.55;
  }
}
