:root {
	--green: #053827;
	--green-text: #032319;
	--yellow: #F1E4D3;
	--yellow-bg: #ECDBC4;

	--margin: 7%;
	--padding-y: 180px;

	--font-size: calc(16px + (30 - 18) * ((100vw - 320px) / (1920 - 320)));

	--accent: #000;
	--accent-hover: #000;
	--accent-active: #000;

    --font-serif: 'Aboreto', sans-serif;
    --font-sans: 'DM Sans', sans-serif;

}	
html, body{
	font-family: var(--font-sans);
	font-size: var(--font-size);
	font-weight: 300;
	color: var(--green-text);
	background-color: #ffffff;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6{
	font-family: var(--font-serif);
	font-weight: normal;
	margin: 0;
	padding: 0;
	line-height: 1.2;
}

h2{
	font-size: 3rem;
	text-transform: uppercase;
	margin-bottom: 2rem;
}
h3{
	font-size:2rem;
	/*text-transform: uppercase;*/
	/*margin-bottom: 1rem;*/
}
h4{
	font-size: 1.6rem;
}
h5{
	font-size: 1.1rem;
}

h6{
	font-size: 1rem;
	text-transform: uppercase;
}
a{
	color: inherit;
	text-decoration: none;
	transition: all .3s ease;
}
a:hover{
	text-decoration: underline;
}
p{
	font-size: 1rem;
	line-height: 1.5;
	margin: 0 0 1.5rem 0;
}
strong{
	font-weight: 600;
}

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

/**/
.container{
	max-width: unset;
	margin: 0 auto;
	padding: 0 var(--margin);
}
.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex-column{
	flex-direction: column;
}
.aic{
	align-items: center;
}
.aib{
	align-items: end;
}
.jcc{
	justify-content: center;
}


/*	----------------  */
header{
	color: var(--yellow);
	padding: 1rem 0;
	transition: all ease 0.5s;
	background: transparent;
}
header.fixed{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
header.scrolled{
		background: var(--green);
		box-shadow: 0 0 50px -20px rgba(0, 0, 0, 0.7);
}
header .flex{
	align-items: center;
}
.logo{
	font-size: 1rem;
}
.logo a{
	color: var(--yellow);
	text-decoration: none;
	transition: all ease .3s;
}
.logo a:hover{
	color: #ffffff;
	text-decoration: none;
}
.logo a span{
	display: inline-block;
}
.logo a span:nth-child(1){
	animation: load .5s 0s both;
}
.logo a span:nth-child(2){
	animation: load .5s 0.25s both;
}
.logo a span:nth-child(3){
	animation: load .5s 0.5s both;
}

.lang-switch{
	font-size: 0.6rem;
	letter-spacing: 0.18em;
	color: var(--yellow);
	text-decoration: none;
	margin-left: auto;
	margin-right: 1.5rem;
	padding: 0.25rem 0.5rem;
	transition: all .3s ease;
	animation: load .5s 0.6s both;
}
.lang-switch:hover{
	color: #ffffff;
	text-decoration: none;
}

.nav-lang{
	letter-spacing: 0.18em;
}

.nav-toggle{
	display: flex;
	flex-direction: column;
	justify-content: end;
	cursor: pointer;
	animation: load .5s 0.75s both;
}
.nav-toggle .bar{
	width: 50px;
	height: 2px;
	background-color: var(--yellow);
	margin: 4px 0;
	transition: 0.4s;
}
.nav-toggle .bar:nth-child(2){
	width: 75%;
	margin-left: auto;
}
.nav-toggle:hover .bar{
	background-color: #ffffff;
	width: 50px;
}


/*	---------------------------------------------  */
#intro{
	background: var(--green);
	padding: 4rem 0 2rem 0;
	/*padding: var(--padding-y) 0;*/
	position: relative;
	overflow: hidden;	
}
.intro-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: overlay;
	opacity: 0.3;
	pointer-events: none;
}

.court-logo{
	animation: load 1s 1s both;
}

/**/
#about{
	padding: var(--padding-y) 0;
	text-align: center;
	background: #f1e4d3 url(./assets/01_intro.avif) no-repeat center top/cover;
}
#about .flex{
	flex-direction: column;
	gap: 2rem;
	justify-content: center;
	align-items: center;
}
#about p{
	max-width: 50ch;
	margin-bottom: 5rem;
	text-shadow: -1px 1px 10px #ffffffb5;
	font-size: 1.35rem;
}
/**/
#project{
	background: var(--green);
	color: var(--yellow);
	padding: var(--padding-y) 0;
	text-align: center;
}
#project .container{
	padding: 0 calc(var(--margin) / 2);
}


.projects{
	gap: 1rem;
	/*
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
	*/

	display: flex;
	justify-content: center;
	align-items: start;
    flex-wrap: wrap;
}
.project-item{
	padding: .5rem;
	text-align: center;
	flex: 0 1 calc(20% - 2rem);
}
.project-item h3{
	font-family: 'DM Sans', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin: 1rem 0;
	text-transform: unset;
}
.project-item img{
	border-radius: 50%;
	margin: 1rem auto;
}
.project-item p{
	font-size: .65rem;
}
#project strong{
	color: #fff;
}

/**/

#team{
	background: var(--green);
	color: var(--yellow);
	padding: var(--padding-y) 0;
	text-align: center;
}
#team .container{
	padding: 0 calc(var(--margin) / 2);
}
.team-members{
	gap: 1rem;
	/*
	display: grid;
	grid-template-columns: repeat(5, minmax(285px, 1fr));
	*/

	display: flex;
	justify-content: center;
	align-items: start;
    flex-wrap: wrap;
}
.team-member{
	padding: .5rem;
	flex: 0 1 calc(20% - 2rem);

	text-align: center;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
.team-member h3{
	font-family: 'DM Sans', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
}
.team-member > img{
	border-radius: 50%;
	margin: 1rem auto 0 auto;
}
.team-member  img{
	margin-left: auto;
	margin-right: auto;
}
.team-member p{
	font-size: .65rem;
	margin: 0;
}



/**/
#grass{
	padding: calc(var(--padding-y) * 2) var(--margin);
	background: url(./assets/bg_grass.jpg) no-repeat center center / cover ;
	color: var(--yellow);
}
#grass .content{
	max-width: 40ch;
}
#grass h2{
	color: #fff;
}
/**/

#prague{
	padding: calc(var(--padding-y) * 2)  var(--margin) calc(var(--padding-y) * 1) var(--margin);
	background: url(./assets/bg_prague.jpg) no-repeat center center/cover;
	color: #000;
}
#prague .content{
	max-width: 40ch;
	order: -1;
}

/**/

#vision{
	background: url(./assets/full_01_vision.avif) no-repeat center center/cover;
}
#harmony{
	background: url(./assets/full_02_harmony_1.avif) no-repeat center center/cover;
}
#legacy{
	background: url(./assets/full_03_legacy.avif) no-repeat center center/cover;
}
#community{
	background: url(./assets/full_04_community.avif) no-repeat center center/cover;
}
#iconic{
	background: url(./assets/full_05_iconic_1.avif) no-repeat center center/cover;
}


.gallery{
	/*min-height: 100vh;*/
	aspect-ratio: 16/6;
	color: #fff;
	padding: var(--padding-y) 0;
	position: relative;
}
.gallery::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.0) 80%);
	z-index: 10;
}
.gallery h2{
	position: relative;
	z-index: 11;
}

/**/
#newsletter{
	padding: var(--padding-y) 0;
	text-align: center;
	background: var(--yellow-bg);
}
.newsletter-input form{
	display: flex;
	justify-content: center;
	gap: .5rem;
	margin-top: .25rem;
}
.newsletter-input input[type="email"]{
	padding: .35rem;
	border: 1px solid var(--green);
	border-radius: 7px;
	font-size: .7rem;
	width: 25ch;
	font-family: "DM Sans", sans-serif;
}
.newsletter-input button{
	padding: .35rem;
	border: none;
	border-radius: 7px;
	background-color: var(--green);
	color: var(--yellow);
	font-size: .7rem;
	font-family: "DM Sans", sans-serif;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.newsletter-input button:hover{
	background-color: var(--green-text);
}
#newsletter p{
	max-width: 55ch;
	margin: 0 auto 2rem auto;
}
p.privacy-notice {
    font-size: .6rem;
    opacity: .65;
    line-height: 1.3;
    padding: 1rem 0;
}
p.privacy-notice a{
	color: var(--green);
	text-decoration: underline;
}
#newsletter .flex{
	gap: 1rem;
}

/**/
#contact{
	display: grid;
	grid-template-columns: repeat(3, minmax(250px, 1fr));
	text-align: center;
}
#contact h3{
	margin-bottom: 1.5rem;
}
.contact-col{
	padding: 15% 15% 14% 15%;
}
.visitus{
	background: #FDF4E9;
}

#tellus-form{
	display: flex;
	flex-direction: column;
	gap: 0;
}
#tellus-form .hp-field{
	position: absolute !important;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}
#tellus-form input, #tellus-form textarea{
	padding: .3rem;
	border: 1px solid var(--green);
	border-radius: 7px;
	font-size: .7rem;
	font-family: "DM Sans", sans-serif;
	font-weight: 200;
	margin-bottom: -1px;
}
#tellus-form button{
	padding: .3rem 1rem;
	border: none;
	border-radius: 7px;
	background-color: var(--green);
	color: var(--yellow);
	font-size: .7rem;
	font-family: "DM Sans", sans-serif;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
#tellus-form button:hover{
	background-color: var(--green-text);
}


#copy{
	background: #ffffff;
    text-align: center;
    border-top: 1px solid #fdf4e9;
    padding: 1rem;
}

nav{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 0;
	z-index: 1000;
	background: #fff url(./assets/plan_1.avif) no-repeat left 2rem center/contain;
	background-size: 60% auto;
}
nav > .flex{
	height: 100%;
}
nav.open{
	visibility: visible;
	opacity: 1;
	display: block;
	scrollbar-width: none;
    overflow: auto;
}
nav ul{
	display: flex;
	flex-direction: column;
	background: #F1E4D3;
	width: 30%;
	list-style: none;
	margin: 0 0 0 auto;
	padding: 8rem 2rem 3rem 2rem;
}
nav ul li a{
	display: block;
	padding: .5rem;
	color: var(--green);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: 1.5rem;
	text-align: right;
}

nav ul li:not(.secondary) + li.secondary {
	margin-top: 1.5rem;
}
nav ul li.secondary a{
	font-size: .75rem;
}
nav ul li a:hover{
	color: black;
	text-decoration-thickness: 1px;
    text-underline-offset: .25em;
	padding-right: 1em;
}
.close{
	position: absolute;
	top: 2rem;
	right: 2.5rem;
	cursor: pointer;
	transition: 0.4s;
	justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 2rem;
    width: 2rem;
    border: 1px solid #999;
    border-radius: 100%;
	z-index: 99;
}
.close .bar{
	width: 40px;
	height: 2px;
	background-color: var(--green);
	transform-origin: center;
	transform: rotate(45deg);
}
.close .bar:nth-child(2){
	transform: rotate(-45deg);
	margin-top: -2px;
}
.close:hover{
	transform: rotate(90deg);
}

#top-link{
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	/*right: var(--margin);*/
	background-color: var(--green);
	color: #fff;
	/*padding: .7rem;*/
	border-radius: 100%;
	text-decoration: none;
	font-size: .7rem;
	opacity: 0.7;
	transition: all 0.5s ease;
	z-index: 500;
	aspect-ratio: 1/1;
	width: 42px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	animation: load 1s 3s both;
}
#top-link:hover{
	opacity: 1;
	background: var(--yellow-bg);
	color: var(--green);
}


.anim-load{
	animation: load 1s both paused;
}

.project-item.anim-load{
	animation: load 1s both paused;
}

@media screen and (min-width: 768px) {

	.project-item:nth-of-type(1).anim-load{
		animation-delay: 0.0s ;
	}
	.project-item:nth-of-type(2).anim-load{
		animation-delay: 0.25s ;
	}
	.project-item:nth-of-type(3).anim-load{
		animation-delay: 0.5s ;
	}
	.project-item:nth-of-type(4).anim-load{
		animation-delay: 0.75s ;
	}
	.project-item:nth-of-type(5).anim-load{
		animation-delay: 1s ;
	}
	.project-item:nth-of-type(6).anim-load{
		animation-delay: 1.25s ;
	}	
}



.team-member.anim-load{
	animation: load 1s both paused;
}
@media screen and (min-width: 768px) {

	.team-member:nth-of-type(1).anim-load{
		animation-delay: 0.0s ;
	}
	.team-member:nth-of-type(2).anim-load{
		animation-delay: 0.25s ;
	}
	.team-member:nth-of-type(3).anim-load{
		animation-delay: 0.5s ;
	}
	.team-member:nth-of-type(4).anim-load{
		animation-delay: 0.75s ;
	}
	.team-member:nth-of-type(5).anim-load{
		animation-delay: 1s ;
	}
	.team-member:nth-of-type(6).anim-load{
		animation-delay: 0.25s ;
	}
	.team-member:nth-of-type(7).anim-load{
		animation-delay: 0.5s ;
	}
	.team-member:nth-of-type(8).anim-load{
		animation-delay: 0.75s ;
	}
	.team-member:nth-of-type(9).anim-load{
		animation-delay: 1s ;
	}
	.team-member:nth-of-type(10).anim-load{
		animation-delay: 1.25s ;
	}
}



	.rare-legends-names span:nth-of-type(1).anim-load{
		animation-delay: 0.0s ;
	}
	.rare-legends-names span:nth-of-type(2).anim-load{
		animation-delay: 0.15s ;
	}
	.rare-legends-names span:nth-of-type(3).anim-load{
		animation-delay: 0.3s ;
	}
	.rare-legends-names span:nth-of-type(4).anim-load{
		animation-delay: 0.45s ;
	}
	.rare-legends-names span:nth-of-type(5).anim-load{
		animation-delay: 0.6s ;
	}
	.rare-legends-names span:nth-of-type(6).anim-load{
		animation-delay: 0.75s ;
	}
	.rare-legends-names span:nth-of-type(7).anim-load{
		animation-delay: 0.9s ;
	}
	.rare-legends-names span:nth-of-type(8).anim-load{
		animation-delay: 1.05s ;
	}
	.rare-legends-names span:nth-of-type(9).anim-load{
		animation-delay: 1.2s ;
	}
	.rare-legends-names span:nth-of-type(10).anim-load{
		animation-delay: 1.35s ;
	}
	.rare-legends-names span:nth-of-type(11).anim-load{
		animation-delay: 1.5s ;
	}




.contact-col.anim-load{
	animation: load 1s both paused;
}
.contact-col:nth-of-type(1).anim-load{
	animation-delay: 0.0s ;
}
.contact-col:nth-of-type(2).anim-load{
	animation-delay: 0.25s ;
}
.contact-col:nth-of-type(3).anim-load{
	animation-delay: 0.5s ;
}


@keyframes load{
  from { transform: translateY(50px); opacity:0; filter: blur(20px) };
  to{ transform: translateY(0px); opacity:1; filter: blur(0)};
}
.anim-load.play{
	animation-play-state: running;
}

.lead .word {
	display: inline-block;
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 0.6s ease, transform 0.3s ease;
	transition-delay: calc(var(--i) * 0.06s);
}
.lead.words-play .word {
	opacity: 1;
	transform: translateY(0);
}


@media screen and (max-width: 1600px) {
	.projects{
		/*grid-template-columns: repeat(2, minmax(290px, 1fr));*/
	}
	.team-members{
		/*grid-template-columns: repeat(2, minmax(290px, 1fr));*/
	}
	.close{
		width: 3rem;
		height: 3rem;
	}

}


@media screen and (max-width: 1280px) {
	.project-item{
		flex: 0 1 calc(33% - 2rem);
	}
	.team-member{
		flex: 0 1 calc(33% - 2rem);
	}

	.team-member p{
		font-size: .8rem;
	}
	.project-item p{
		font-size: .8rem;
	}



}
@media screen and (max-width: 768px) {
	:root{
		--margin: 5%;
		--padding-y: 90px;
	}
	.nav-toggle .bar{
		width: 40px;
	}
	#project .container{
		padding: 0 var(--margin);
	}
	.projects{
		/* grid-template-columns: repeat(1, minmax(290px, 1fr)); */
	}
	.project-item{
		flex: 0 1 calc(50% - 2rem);
	}
	.project-item p{
		font-size: 1rem;
	}
	.team-member p{
		font-size: 1rem;
	}

	#team .container{
		padding: 0 var(--margin);
	}
	.team-members{
		/* grid-template-columns: repeat(1, minmax(290px, 1fr)); */
	}
	.team-member{
		flex: 0 1 calc(50% - 2rem);
	}
	#contact{
		grid-template-columns: repeat(1, minmax(250px, 1fr));
	}
	#prague .content{
		order: 2;
		z-index: 9;
	}
	.gallery{
		--padding-y: 30px;
        aspect-ratio: 16 / 9;
	}
	nav {
		background-position: bottom 3rem center;
        background-size: 90%;
	}
	nav ul{
		width: 100%;
		height: auto;
		padding-top: 9rem;
	}


}

@media screen and (max-width: 600px) {
	nav ul li:last-of-type a{
		font-size: .9rem;

	}
	.project-item{
		flex: 0 1 calc(100% - 2rem);
	}
	.team-member{
		flex: 0 1 calc(100% - 2rem);
	}
	h2{
		font-size: 2.8rem;
	}
	p.privacy-notice{
		font-size: .9rem;
	}
	#tellus-form input, #tellus-form textarea {
		font-size: .9rem;
	}

}





  /* ============================================================
     BRAND TOKENS — designer: replace with real brand values
     ============================================================ */
  :root {
    --ink: #0E1413;          /* near-black text & primary */
    --paper: #F5F1E8;        /* warm off-white background */
    --grass: #053827;        /* deep grass green — accent */
    --grass-light: #6B8E4E;  /* lighter grass green */
    --muted: #5A5A5A;        /* secondary text */
    --line: rgba(14, 20, 19, 0.2); /* hairline dividers */
  }

  

  /* ============================================================
     SECTION — designer: this is the entire rare-section block
     Drop between <section>GRASS.</section> and <section>PRAGUE.</section>
     ============================================================ */
#rare{
	padding: calc(var(--padding-y) / 2) var(--margin) var(--padding-y) var(--margin);
	text-align: left;
    background: var(--paper);
    color: var(--ink);
	position: relative;
}
#rare::before{
	content: "";
	position: absolute;
	top: -200px;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(to top, var(--paper) 0%, transparent 100%);
	opacity: 1;
	z-index: 0;
}
#rare .container{
	padding: 0 calc(var(--margin) );
}
  .rare-section {
	}  
  .rare-hero { 
	text-align: center; 
	}
  .rare-eyebrow {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--grass);
    margin: 1rem 0
  }
  .rare-headline {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2.5rem;
    color: var(--ink);
    margin: 0 auto 0rem;
  }
  .rare-headline em {
    font-style: italic;
	font-weight: 700;
    color: var(--grass);
  }
  .rare-kicker {
    font-family: var(--font-serif);
    /*font-size: 1.25rem;*/
    font-size: 1.5rem;
    color: var(--green);
    margin: -1rem 0 0 0;
	animation-delay: .5s;

	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;	
	margin-bottom: -80px;
}
.rare-kicker span{
	position: relative;
}
/*
.rare-kicker span:after{
	content: "";
	position: absolute;
    left: 0;
    bottom: -.5rem;
	display: inline-block;
	width: 0px;
	height: 1px;
	background-color: var(--green);
	margin: 40px auto 0 auto;	
	transition: width .75s 1.75s ease;
}
.rare-kicker.anim-load.play span:after{
	width: 100%;
}
*/




  .rare-split {
    display: grid;
    grid-template-columns: 1fr 25%;
    gap: 64px;
    align-items: start;
    margin: 0 0 calc(var(--padding-y) / 2) 0;
    padding:  0 0 calc(var(--padding-y) / 2) 0;
    /*border-top: 1px solid var(--line);*/
    border-bottom: 1px solid var(--line);
  }
  .rare-zero-eyebrow {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    font-weight: 500;
        color: var(--grass);
    margin: 0 0 8px;
  }
  .rare-zero {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    font-size: 10rem;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.04em;
    margin: 0;
  }
  .rare-zero-sub {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    line-height: 1.35;
    margin: 12px 0 0;
    /*max-width: 300px;*/
  }
  .rare-legends-wrap {
    padding-right: 30px;
    border-right: 1px solid var(--line);
  }
  .rare-legends-lbl {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--grass);
    margin: 0 0 20px;
  }
  .rare-legends-names {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.45;
    color: var(--ink);
    margin: 1.5rem 0;

	display: flex;
	flex-wrap: wrap;
	gap: .1em 1em;
  }
  .rare-legends-names span {
    color: var(--ink);
  }

  /**/
.rare-legends-names span + span::before {
  content: "•";
  margin: 0 0 0 -.7em;
  color: var(--line);
  position: absolute;
}
.rare-legends-names span.row-start::before {
  display: none;
}
/**/

  .rare-legends-names .sep {
    color: var(--line);
    font-style: normal;
    margin: 0 6px 0 10px;
    letter-spacing: -8px;
  }
  .rare-legends-note {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    line-height: 1.35;
    margin: 18px 0 0;
	max-width: 40ch;
  }

  .court-logo-anim {
      width: min(450px, 100%);
      height: auto;

	position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 10px;
    }

    .anim-load.play .draw {
      fill: none;
      stroke: #363636;
      stroke-width: 5;
      stroke-miterlimit: 5.33;
      stroke-dasharray: 1;
      stroke-dashoffset: 1;
      animation: draw 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      animation-delay: var(--d, 0s);
    }

    @keyframes draw {
      to { stroke-dashoffset: 0; }
    }
	

  /* ============================================================
     RESPONSIVE — designer: adjust breakpoint to match site
     ============================================================ */
  @media (max-width: 768px) {
	#prague {
		padding-bottom:  calc(var(--padding-y) / 2) ;
	}	
	#rare{
		padding-top:0;
		text-align: center;
	}
    .rare-section { padding: 64px 28px; }
    .rare-headline { font-size: 32px; }
    .rare-kicker { 
		    margin: -1.5rem 0 ;
	}
    .rare-split {
      grid-template-columns: 1fr;
      gap: 80px;
      padding: 0 0 40px 0;
    }
    .rare-zero { 
		font-size: 15rem;
        text-align: center;
        letter-spacing: .2em;}
    .rare-legends-wrap {
      padding-right: 0;
      border-right: none;
      padding-top: 32px;
    }
    .rare-legends-names {     
		font-size: 1.75rem;
		justify-content: center;
 }
	.rare-zero-sub{
		font-size: 1.15rem;
		margin-top: 0;
	}
	.rare-legends-note{
		font-size: 1.15rem;
	}
	.rare-legends-lbl,
	.rare-zero-eyebrow,
	.rare-eyebrow{
		font-size: 0.75rem;
		font-family: var(--font-sans);
	}

  }

  @media (max-width: 560px) {
		.rare-kicker{
			aspect-ratio: 1/1.01;
			min-height: unset;
		}
	}
  @media (max-width: 450px) {
		.rare-kicker{
			aspect-ratio: 1/1.05;
			
		}

	}


