:root {
  --bg: #dcbfb7;
  --text: #f7efe9;
  --line: rgba(255,255,255,0.5);
  --header-bg: rgba(109, 83, 74, 0.18);
  --header-border: rgba(255,255,255,0.14);
  --button-bg: rgba(255,255,255,0.12);
  --shadow: 0 20px 60px rgba(0,0,0,0.15);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  /*font-family: "Roboto Condensed", sans-serif;*/
  font-family: "Baloo 2", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

.container {
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 18px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid var(--header-border);
  border-radius: 20px;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.site-nav a:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

.site-nav .btn-link {
  background: var(--button-bg);
  border: 1px solid rgba(255,255,255,0.16);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  padding: 10px 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  
  background-size: cover;
  background-position: center center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.subhead,
.date {
    text-transform: lowercase;
    letter-spacing: -2px;
    font-size: 5vw;
    font-weight: 800;
    color: #fff;
	text-align: left;
    margin-left: 25px;
	margin-top: 25px;
}

.divider {
	width: 100%;
    height: 1px;
    background: #fff;
    margin: 28px auto;
}

.date {
  margin-bottom: 18px;
}

h1 {
    margin: 0;
    font-size: 20vw;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -12px;
    color: #fff;
	margin-top: 80px;
	font-family: "Baloo 2", sans-serif;
}
.small_txt{
	font-size: 17vw;
}
.cs_align{
	text-align: right;
    margin-right: 25px;
}
.mt-12{
	margin-top:12px !important;
}
.br_dsk_none{
	display: none;
}

@media (max-width: 600px) {
 h1{
	 letter-spacing:normal;
 }
 .eyebrow,
.subhead,
.date {
    letter-spacing: normal;
	font-size: 15vw;
	line-height: 1.2;
}
.mtM_36px{
	margin-top: 36px;
}
.br_dsk_none{
	display: block;
}
}
