:root {
  --gold: #c8964a;
  --dark: #0d0d0d;
  --gray: #eeeeee;
  --black: #000000;
  --white: #ffffff;
  --header: "Archivo Black", sans-serif;
  --paragraph: "CriqueGrotesk", sans-serif;
  --accent: "Archivo Black", sans-serif;
}

@font-face {
  font-family: 'CriqueGrotesk';
  src: url('../assets/fonts/CriqueGrotesk.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


* {
  font-family: var(--paragraph);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
}

*::before, 
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, 
body {
  overflow-x: hidden !important;
  padding: 0rem !important;
  margin: 0rem !important;
}

body {
  background-color: var(--white);
  position: relative;
}

a:hover, 
a:hover * {
  cursor: pointer !important;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
  color: var(--black);
}

h1 {
  font-family: var(--header);
  text-transform: uppercase;
  font-size: 72px;
  line-height: 1;
}

h1 span {
  font-family: var(--header);
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  font-weight: bold;
}

h2 {
  font-family: var(--paragraph);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

p {
  padding-bottom: 20px;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.container-larger {
  max-width: 1300px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex: 1;
}

.v-center {
  align-items: center;
}

.center {
  text-align: center;
}

.g-50 {
  gap: 50px !important;
}

.g-25 {
  gap: 25px !important;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--gold); 
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 0 2rem 0 0;
  text-decoration: none;
  position: relative;
  box-shadow: -8px 8px 0 var(--black); 
  font-family: var(--header);
  font-size: 24px;
  font-style: italic;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn .arrow {
  margin-left: 1rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.btn:hover {
  background: var(--black);
  color: var(--white);
  box-shadow: 0px 0px 0 var(--black); 
}

.btn i {
  margin-left: 15px;
}

img {
  max-width: 100%;
}

nav .row {
  display: flex;
  align-items: center;
  gap: 50px;
}

nav .row > div {
  flex: 1;
}

nav .row > div:nth-child(2) {
  flex: 3;
}

nav .border {
  border-width: 100%;
  height: 4px;
  background: var(--gold);
}

header .row {
  gap: 50px;
}

header .row > div {
  flex: 1;
}

header h1 {
  margin-bottom: 20px; 
}

header h2 {
  margin-bottom: 25px; 
}

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

header {
  padding: 50px 25px 100px 25px;
  background: linear-gradient(50deg, var(--gold) -50%, #ffffff 25% 40%);
}

.paper {
  position: absolute;
  width: 100%;
  margin-top: -125px;
  right: -200px;
}

.side-note {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 800;
  font-size: 1rem;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding-right: 1rem;
  height: 250px;
}

.side-note::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background-color: var(--gold);
}

header .right-side {
  display: inline-flex;
}

header .right-side img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

header .right-side > div {
  flex: 1;
}

nav {
  padding: 25px 0;
}

.s-01 {
  background: url('../assets/images/BG_TEXTURE_paper.jpg');
  color: var(--white);
  padding: 50px;
  border-radius: 0 150px 0 0;
  position: relative;
  background-size: cover;
}

.s-01 h2 {
  color: var(--white);
  font-size: 21px;
  line-height: 1.5;
}

.s-01 .content {
  width: 1000px;
  max-width: 100%;
  text-align: center;
  margin: auto;
  padding: 100px 0 50px 0;
}

.s-02 {
  padding-top: 80px;
  background: url('../assets/images/TEMPO_BG.png');
  background-position: left;
  background-size: 50%;
  background-repeat: repeat-y;
  background-attachment: fixed;
  position: relative;
  background-color: var(--white);
}

.s-02 .row {
  gap: 50px;
}

.s-02 .row > div {
  flex: 1;
}

.s-02 .row > div:nth-child(2) {
  flex: .75;
}

.s-02 h2 {
  font-family: var(--header);
  font-size: 54px;
  line-height: 1;
  margin-bottom: 20px;
}

.s-02 h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.btn-img {
  width: 300px;
}

.s-02 .content {
  padding: 50px 0;
}

.s-03 {
  overflow: hidden;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 10s linear infinite;
}

.s-03 h2 {
  display: inline-block;
  font-size: 72px;
  letter-spacing: -5px;
  font-weight: 1;
  font-family: var(--header);
  text-transform: uppercase;
  margin: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.s-03 {
  background: var(--gold);
  box-shadow: 0px 0px 20px 20px var(--gold);
  position: relative;
  margin-top: -10px;
}

.s-03 h2 {
  color: var(--white);
}

.s-04 {
  background-image: url('../assets/images/BG_TEXTURE.jpg');
  background-size: cover;
  color: var(--white);
  padding: 100px 25px;
}

.s-04 .row {
  gap: 50px;
}

.s-04 .row > div {
  flex: 1;
}

.s-04 .row > div:first-child {
  flex: .5;
}

.s-04 h2 {
  color: var(--white);
  text-align: right;
  font-family: var(--header);
  font-size: 54px;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.s-04 span {
  font-size: 100px;
  line-height: 0;
  position: absolute;
  right: 0;
  top: 50px;
  color: var(--gold);
}

.s-04 .content p {
  color: var(--white);
  font-size: 21px;
  line-height: 1.5;
  text-align: right;
}

.people {
  position: relative;
  z-index: 2;
  padding: 25px 0 100px;
}

footer {
  padding: 25px 0;
  background: linear-gradient(350deg, var(--gold) -10%, #ffffff 40%);
}

footer .row {
  gap: 100px;
  align-items: center;
}

footer .row > div {
  flex: 1;
}

footer .row > div:nth-child(2) {
  flex: .25;
}

footer ul {
  display: inline-flex;
  list-style: none;
  gap: 50px;
  padding: 25px 0;
}

footer li a {
  font-family: var(--header);
  text-decoration: none;
  color: var(--black);
  font-size: 24px;
  transition: all 0.2s;
}

footer li a:hover {
  color: var(--gold);
}

.circle-arrow {
  position: absolute;
  width: 150px;
  top: 250px;
  left: 50px;
}

.element-01 {
  position: absolute;
  width: 125px;
  right: 25px;
  top: -50px;
}

.white-logo {
  position: absolute;
  bottom: 0;
  width: 500px;
  right: 0;
}

.circle {
  position: absolute;
  width: 500px;
  right: -100px;
  bottom: 20px;
}