RRS First version

This commit is contained in:
2026-09-12 03:08:23 -04:00
commit c050d25a84
41 changed files with 5575 additions and 0 deletions
+219
View File
@@ -0,0 +1,219 @@
.home-hero {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
min-height: 590px;
margin-top: 24px;
border-radius: 7px;
color: var(--paper);
background: var(--ink);
}
.home-hero__image {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 65%;
}
.home-hero__shade {
position: absolute;
inset: 0;
background: #1419108f;
}
.home-hero__content {
position: relative;
z-index: 1;
padding: 65px 62px 90px;
}
.home-hero__title {
margin: 38px 0 25px;
font-family: var(--serif);
font-size: clamp(54px, 6.7vw, 94px);
font-weight: 400;
line-height: 1.02;
letter-spacing: -0.055em;
}
.home-hero__description {
max-width: 400px;
margin: 0 0 30px;
color: #eeece5;
font-size: 15px;
line-height: 1.8;
}
.home-hero__actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.home-hero__bottom {
position: absolute;
bottom: 0;
left: 32px;
right: 32px;
display: flex;
justify-content: space-between;
gap: 20px;
padding: 20px 0;
border-top: 1px solid #ffffff35;
font-size: 11px;
line-height: 1.6;
}
.home-hero__tagline {
font-size: clamp(14px, 1.2vw, 16px);
font-weight: 500;
color: #ffffff;
letter-spacing: 0.01em;
}
.home-hero__image-note {
color: #e2e2dc;
}
.home-intro {
display: grid;
gap: 44px;
padding-top: 92px;
}
.home-intro__heading {
text-align: center;
}
.home-intro__body {
width: min(100%, 820px);
margin-inline: auto;
}
.home-intro__title {
margin: 0;
font-family: var(--serif);
font-size: clamp(36px, 4.2vw, 57px);
font-weight: 400;
line-height: 1.08;
letter-spacing: -0.045em;
}
.home-intro__lead {
font-family: var(--serif);
font-size: clamp(25px, 2.5vw, 34px);
line-height: 1.4;
letter-spacing: -0.015em;
margin: 0 0 24px;
}
.home-intro__text {
color: var(--muted);
font-size: 14px;
line-height: 1.9;
margin: 0 0 15px;
}
.home-intro__link {
display: inline-flex;
align-items: center;
gap: 30px;
margin-top: 12px;
padding-bottom: 7px;
border-bottom: 1px solid var(--ink);
color: var(--ink);
font-size: 11px;
text-decoration: none;
}
.process {
padding-top: 95px;
}
.process__list {
border-top: 1px solid var(--line);
}
.process__item {
display: grid;
grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
align-items: center;
gap: clamp(45px, 7vw, 120px);
padding: 58px 0;
border-bottom: 1px solid var(--line);
}
.process__item:nth-child(even) .process__visual {
order: -1;
}
.process__copy {
max-width: 560px;
padding-inline: clamp(0px, 2vw, 34px);
}
.process__verb {
margin: 0 0 24px;
font-size: 14px;
font-weight: 500;
color: var(--muted);
}
.process__title {
margin: 0 0 22px;
font-family: var(--serif);
font-size: clamp(35px, 3.3vw, 52px);
font-weight: 400;
line-height: 1.08;
letter-spacing: -0.04em;
}
.process__text {
margin: 0 0 28px;
color: var(--muted);
font-size: 14px;
line-height: 1.9;
}
.process__link {
display: inline-flex;
align-items: center;
gap: 24px;
padding-bottom: 7px;
border-bottom: 1px solid var(--ink);
color: var(--ink);
font-size: 12px;
text-decoration: none;
}
.process__visual {
width: 100%;
min-height: 320px;
aspect-ratio: 16 / 10;
}
.process__link:hover {
color: var(--accent);
}
@media (max-width: 760px) {
.home-hero {
margin-top: 18px;
min-height: 560px;
}
.home-hero__content {
padding: 42px 26px 130px;
}
.home-hero__title {
font-size: clamp(44px, 8.9vw, 68px);
margin-top: 32px;
}
.home-hero__bottom {
left: 26px;
right: 26px;
flex-direction: column;
gap: 8px;
padding: 15px 0;
}
.home-intro {
gap: 30px;
padding-top: 55px;
}
.process {
padding-top: 60px;
}
.process__item {
grid-template-columns: 1fr;
gap: 28px;
padding: 42px 0;
}
.process__visual,
.process__item:nth-child(even) .process__visual {
order: -1;
}
.process__copy {
max-width: none;
padding-inline: 0;
}
.process__visual {
min-height: 280px;
aspect-ratio: 4 / 3;
}
}