@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
 
/* Dream Orphans — self hosted */
@font-face {
  font-family: 'Dream Orphans';
  src: url('/assets/DreamOrphans-Regular.woff2') format('woff2'),
       url('/assets/DreamOrphans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
 
/* ============================================================
   JADE RABBIT — Root
============================================================ */
 
:root {
 
  /* ----------------------------------------------------------
     COLORS
  ---------------------------------------------------------- */
 
  --color-bg:           #F5F0E8;
  --color-bg-alt:       #EDE8DC;
  --color-bg-dark:      #1C1A17;
 
  --color-text:         #1C1A17;
  --color-text-head:   #4E4A59;
  --color-text-inverse: #F5F0E8;
 
  --color-sage:         #7A9E7E;
  --color-rose:         #C97B7B;
  --color-gold:         #C4A882;
  --color-clay:         #B5715A;
  --color-blush:        #E8C4B8;
 
  /* ----------------------------------------------------------
     TYPOGRAPHY
  ---------------------------------------------------------- */
 
  --font-display: 'Dream Orphans', Georgia, serif;
  --font-body:    'Roboto Serif', Georgia, serif;
 
  /* 1.25 major third scale */
  --fs-20:   clamp(1rem,      0.9rem  + 0.5vw,   1.25rem);    /*  16px → 20px */
  --fs-25:   clamp(1.25rem,   1.1rem  + 0.75vw,  1.5625rem);  /*  20px → 25px */
  --fs-31:   clamp(1.5rem,    1.3rem  + 1vw,     1.9375rem);  /*  24px → 31px */
  --fs-39:   clamp(1.75rem,   1.5rem  + 1.5vw,   2.4375rem);  /*  28px → 39px */
  --fs-49:   clamp(2rem,      1.7rem  + 2vw,     3.0625rem);  /*  32px → 49px */
  --fs-61:   clamp(2.5rem,    2rem    + 3vw,     3.8125rem);  /*  40px → 61px */
  --fs-149:  clamp(4rem,      2.5rem  + 8vw,     9.3125rem);  /*  64px → 149px */
  --fs-232:  clamp(5rem,      3rem    + 12vw,    14.5rem);    /*  80px → 232px */
 
  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-normal:  1.5;
  --lh-relaxed: 1.7;
 
  --ls-tight:  -0.03em;
  --ls-normal:  0;
  --ls-wide:    0.08em;
  --ls-wider:   0.15em;
 
  /* ----------------------------------------------------------
     SPACING 
  ---------------------------------------------------------- */
 
  --space-1:   0.5rem;    /*   8px */
  --space-2:   1rem;      /*  16px */
  --space-3:   1.5rem;    /*  24px */
  --space-4:   2rem;      /*  32px */
  --space-5:   2.5rem;    /*  40px */
  --space-6:   3rem;      /*  48px */
  --space-8:   4rem;      /*  64px */
  --space-10:  5rem;      /*  80px */
  --space-12:  6rem;      /*  96px */
  --space-16:  8rem;      /* 128px */
  --space-20:  10rem;     /* 160px */
  --space-24:  12rem;     /* 192px */
 
  --section-y: clamp(4rem, 8vw, 8rem);
  --section-x: clamp(1.5rem, 6vw, 6rem);

  --max-width:       clamp(320px, 95vw, 1440px);
  --max-width-wide:  clamp(320px, 100vw, 1740px);
 
}
 
/* ----------------------------------------------------------
   RESET
---------------------------------------------------------- */
 
*,
*::before,
*::after {
  box-sizing: border-box;
  margin:     0;
  padding:    0;
}
 
html {
  scroll-behavior:          smooth;
  scrollbar-width: none;
}
 
body {
  background-color:        var(--color-bg);
  color:                   var(--color-text);
  font-family:             var(--font-body);
  line-height:             var(--lh-normal);
}
 
img, video, svg { display: block; max-width: 100%; height: auto; }
a              { color: var(--color-text); text-decoration: none; }
ul, ol         { list-style: none; }
button         { cursor: pointer; border: none; background: none; font: inherit; color: var(--color-text); }
input, textarea, select { font: inherit; }
 

/*===================
    Header
===================*/

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 8vh;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  width: 100%;
}

nav h2 {
    font-size: var(--fs-25);
    font-family: var(--font-display);
    font-weight: 200;
    letter-spacing: var(--ls-wide);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    border: none;
    background: transparent;
    z-index: 15;
}

.ham-line {
    width: 2rem;
    height: .15rem;
    background-color: var(--color-text);
    transition: all 0.4s ease;
}

.ham-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-blush);
    display: flex;
    align-items: end;
    font-family: var(--font-display);
    font-size: var(--fs-25);
    font-weight: 200;
    letter-spacing: var(--ls-wide);
    padding: var(--space-8);
    z-index: 12;
}

.ham-menu ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    font-size: var(--fs-61);
    color: var(--color-text-head);
}

.nav-item {
    transition: all 0.6s ease;
    display: inline-block;
}

.nav-item:hover {
    transform: scale(1.1);
    padding: 1rem;
}

.hamburger.active .line-2 {
    opacity: 0;
}

.hamburger.active .line-1 {
    transform: translateY(.6rem) rotate(45deg);
}

.hamburger.active .line-3 {
    transform: translateY(-.5rem) rotate(-45deg);
}

@media (max-width: 500px) {
    .ham-menu {
        padding: var(--space-4);
    }
}

/*===================
    Hero
===================*/

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(/assets/Vectors.jpg);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
    padding: var(--space-8) var(--space-4);
    height: 100vh;
}

.hero-container {
    max-width: var(--max-width-wide);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content:space-around ;
    gap: var(--space-4);
}

.hero-main {
    display: flex;
    align-items: center;
    align-self: center;
    gap: var(--space-12);
    position: sticky;
    top: 0;
}

.hero-main h1 {
    font-size: var(--fs-149);
    font-weight: 200;
    letter-spacing: var(--ls-wide);
    font-family: var(--font-display);
    color: var(--color-text-head);
    font-weight: 800;
    position: relative;
    padding: 0 var(--space-8);
}

.hero-line-1 {
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--color-bg-dark);
    position: absolute;
    top: 0;
    right: 0;
    transform-origin: center;
}

.hero-line-2 {
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--color-bg-dark);
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: center;
}

#hero ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    align-self: start;
}

.btn-var3 {
    font-size: var(--fs-25);
    position: relative;
    padding: 0 var(--space-2);
    z-index: 3;
}

.btn-var3::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: var(--color-sage);
    left: 0;
    z-index: -1;
    transition: all 0.6s ease;
}

.btn-var3:hover::after {
    width: 100%;
}

@media (max-width: 500px) {
    .hero-main {
        flex-direction: column;
        gap: var(--space-6);
    }

    .hero-line-1 {
        width: 100%;
        height: 2px;
        top: 100%;
    }

    .hero-line-2 {
        width: 100%;
        height: 2px;
        top: 0;
    }

    .hero-main h1 {
        padding: var(--space-2) var(--space-3);
    }
}

/*===================
    gallery
===================*/

#gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 3;
    margin-bottom: var(--space-8);
    margin-top: var(--space-12);
}

.gallery-container {
    max-width: var(--max-width);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-6);
}

.gallery-horizontal-scroll {
    display: flex;
    justify-self: end;
    width: 100%;
    min-height: 60%;
    gap: var(--space-4);
    overflow-x: auto;
    padding: var(--space-4) 0;
    cursor: grab;
    padding-left: var(--space-4);
    padding-bottom: s;
}

.gallery-horizontal-scroll:active {
  cursor: grabbing;
}

.gallery-horizontal-scroll::-webkit-scrollbar {
  display: none;
}
.gallery-horizontal-scroll {
  scrollbar-width: none;
}

.gallery-images {
    display: flex;
    gap: var(--space-4);
}

#gallery img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-title {
    display: flex;
    align-items: center;
    width: 60%;
    border-bottom: 2px solid;
    overflow: hidden;
   
}

.number {
    font-size: var(--fs-232);
    font-family: var(--font-display);
    font-weight: 200;
}

.title-text {
    font-size: var(--fs-61);
    font-family: var(--font-display);
    font-weight: 200;
    letter-spacing: var(--ls-wide);
    height: 100%;
    align-content: end;
    position: relative;
}

.title-text::after {
    content: "";
    width: 100%;
    height: 2rem;
    background-color: var(--color-sage);
    position: absolute;
    bottom: 5%;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

.gallery-text {
    justify-content: end;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.gallery-text p {
    font-weight: 200;
}

.gallery-menu {
    display: flex;
    gap: var(--space-4);
    padding: 0 var(--space-4);
    border-left: 2px solid;
}

.btn-var1 {
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
}

.char {
  display: inline-block;
}

.gallery-flower {
    position: absolute;
    top: 0;
    right: 20%;
    width: clamp(80px, 20vw, 150px);
    height: 80%;
    z-index: 10;
    transition: all .9s ease;
}

.gallery-flower.active {
    opacity: 0;
}

.flower-wrapper {
    position: relative;
    height: 200vh;
}



@media (max-width: 500px) {
    .gallery-container {
        max-width: var(--max-width);
    }

    .gallery-title {
        width: 100%;
        gap: var(--space-2);
    }

    .title-text {
        font-size: var(--fs-39);
    }

    .gallery-text {
        width: 100%;
    }

    .gallery-text p {
        width: 70%;
    }

    .gallery-menu {
        justify-content: center;
    }

    .number {
        line-height: 6rem;
        align-self: end;
        justify-self: end;
    }

    .gallery-flower {
        height: 55%;
        right: 5%;
    }

    .btn-var1 {
        font-size: 14px;
    }

    .title-text {
        font-size: var(--fs-25);
    }
}



/*===================
    about
===================*/

#about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bg);
    min-height: 100vh;
    width: 100%;
    z-index: 6;
    position: relative;
}

.about-container {
    max-width: var(--max-width);
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-top: var(--section-y);
}

.about-left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    border-right: 2px solid;
}

.about-sticky-wrapper {
    position: sticky;
    top: 10%;
    display: flex;
    justify-content: space-between;
}

.about-sticky-wrapper h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: var(--fs-39);
    font-family: var(--font-display);
    font-weight: 200;
    position: relative;
}

.about-sticky-wrapper h2::after {
    content: "";
    width: 2rem;
    height: 100%;
    background-color: var(--color-sage);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
    border-radius: 4px;
}

.about-sticky-wrapper p {
    font-size: var(--fs-31);
    font-family: var(--font-body);
    width: 70%;
    margin-top: var(--space-8);
    margin-right: var(--space-4);
}

.about-right-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    margin-bottom: var(--space-6);
    gap: var(--space-4);
}

.about-right-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.about-right-card h3 {
    font-size: var(--fs-39);
    font-family: var(--font-display);
    font-weight: 200;
}

.li-title {
    font-size: var(--fs-25);
    font-weight: 200;
}

.about-right-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.number-change {
    overflow: visible;
}

@media (max-width: 500px) {
    #about {
        min-height: auto;
    }

    .about-container {
        grid-template-columns: 1fr;
        max-width: var(--max-width);
    }

    .about-left-column {
        border: none;
    }

    .about-right-card ul {
        width: 70%;
    }

    .about-sticky-wrapper {
        position: static;
    }

    #about .number {
        margin-right: var(--space-6);
    }

}

/*===================
    Artists
===================*/

#artists {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    z-index: 6;
    position: relative;
    margin-top: 50vh;
}

.artists-container {
    max-width: var(--max-width-wide);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.artists-title {
    display: flex;
    justify-content: end;
    font-size: var(--fs-49);
    width: 100%;
    font-family: var(--font-display);
}


.artists-title h2 {
    font-weight: 200;
    width: 50%;
    border-bottom: 2px solid;
    padding-left: var(--space-4);
    line-height: 5rem;
}

.scroll-text {
    font-size: var(--fs-25);
    font-weight: 200;
    font-family: var(--font-body);
    z-index: 20;
}

.artists-horizontal-scroll {
    margin-top: var(--space-6);
    display: flex;
    width: 100%;
    min-height: auto;
    gap: var(--space-4);
    overflow-x: auto;
    overflow-y: hidden;
    padding: var(--space-4) 0;
    cursor: grab;
    padding-left: var(--space-4);
}

.artists-horizontal-scroll:active {
  cursor: grabbing;
}

.artists-horizontal-scroll::-webkit-scrollbar {
  display: none;
}
.artists-horizontal-scroll {
  scrollbar-width: none;
}

.artists-pages {
    display: flex;
    width: max-content;
    gap: var(--space-10);
    position: relative;
}

.polaroid-card {
    background: #FAF8F4 ;
    padding: 12px 12px 24px 12px;
    width: 280px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.polaroid-img {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.polaroid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.polaroid-info {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    user-select: none;
    -webkit-user-drag: none;
}

.polaroid-accent {
    width: 30px;
    height: 2px;
    margin-bottom: 2px;
}

.polaroid-info h4 {
    font-size: var(--fs-25);
    font-family: var(--font-display);
    font-weight: 200;
}

.btn-var2 {
    transition: all .6s ease;
    position: relative;
    transform-origin: center;
    display: flex;
    align-self: center;
    cursor: pointer;
    z-index: 8;
}

.btn-var2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #000;
    transform-origin: center;
    transform: scaleX(0);
    transition: all .6s ease;
}

.btn-var2:hover::after {
    transform: scaleX(1);
}

.r1 { transform: rotate(-3deg); }
.r2 { transform: rotate(2deg); }
.r3 { transform: rotate(-1.5deg); }

.card-string {
    width: 100%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.polaroid-card:hover {
    animation: rock 0.5s ease infinite alternate;
}

.artists-horizontal-scroll.active .polaroid-card:hover {
    animation: none;
}

@keyframes rock {
    from { transform: rotate(-3deg); }
    to   { transform: rotate(3deg); }
}

@media (max-width: 500px) {

    .artists-title h2 {
        width: 70%;
    }

    .artists-container {
        max-width: var(--max-width);
    }

    .artists-title {
        justify-content: start;
    }

    .polaroid-img {
        height: 300px;
    }
}

/*===================
    testimonials
===================*/

#testimonials {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    z-index: 6;
}

.testimonial-container {
    max-width: var(--max-width);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--section-y);
}

.testimonial-sticky-wrapper h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: var(--fs-25);
    font-family: var(--font-display);
    font-weight: 200;
    position: relative;
}

.testimonial-sticky-wrapper h2::after {
    content: "";
    width: 1.25rem;
    height: 100%;
    background-color: var(--color-sage);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
    border-radius: 4px;
}

.testimonial-sticky-wrapper {
    position: sticky;
    top: 10%;
    display: flex;
    margin-bottom: auto;
}

.testimonial-horizontal-scroll {
    display: flex;
    width: 100%;
    min-height: auto;
    gap: var(--space-4);
    overflow-x: auto;
    overflow-y: hidden;
    padding: var(--space-4) 0;
    cursor: grab;
    padding-left: var(--space-4);
}

.testimonial-horizontal-scroll:active {
  cursor: grabbing;
}

.testimonial-horizontal-scroll::-webkit-scrollbar {
  display: none;
}
.testimonial-horizontal-scroll {
  scrollbar-width: none;
}

.testimonials {
    display: flex;
    width: max-content;
    gap: var(--space-10);
    position: relative;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 10px;
    width: 300px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-4);
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.testimonial-content h3 {
    font-size: var(--fs-25);
    font-weight: 200;
    font-family: var(--font-display);
    letter-spacing: var(--ls-wide);
}

.testimonial-card img {
    border-radius: 10px;
}

.testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.marquee {
    width: 100%;
    height: 10vh;
    overflow: hidden;
    background-color: #A697C6;
    margin-top: var(--space-1);
}

.marquee-track {
    width: max-content;
    height: 100%;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    word-spacing: var(--space-1);
    letter-spacing: var(--ls-wide);
    font-size: var(--fs-25);
    font-weight: 200;

}
@media (max-width: 500px) {
    #testimonials {
        height: 80vh;
        margin-top: 0;
    }

    .marquee {
        margin-top: var(--space-4);
    }

    .testimonial-sticky-wrapper h2 {
        font-size: var(--fs-31);
    }
}
/*===================
    contact
===================*/

#contact {
    margin-top: var(--section-y);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: auto;
    width: 100%;
    border-bottom: 2px solid;
}

.contact-container {
    max-width: var(--max-width);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
}

.contact-title {
    font-size: var(--fs-61);
    font-weight: 200;
    font-family: var(--font-display);
    letter-spacing: var(--ls-wide);
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 2px solid;
}

.underline {
    position: relative;
}

.underline::after {
    content: "";
    width: 100%;
    height: 3rem;
    background-color: var(--color-sage);
    position: absolute;
    bottom: 15%;
    left: 0;
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.contact-left {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    border-right: 2px solid;
    padding-top: var(--space-6);
    padding-right: var(--space-4);
    padding-bottom: var(--space-4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    font-weight: 200;
}

.booking-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.booking-container h3 {
    font-size: var(--fs-25);
    font-weight: 200;
    letter-spacing: var(--ls-wide);
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

input, #artist-select {
    padding: var(--space-1);
    border-radius: 4px;
    border: 1px solid var(--color-text);
    font-weight: 200;
    letter-spacing: var(--ls-wide);
    width: 80%;
    background-color: rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); /
}

select {
  border: 1px solid #ccc;
  outline: none;
  box-shadow: none; 
  appearance: none; 
}

select:focus {
  border: 1px solid var(--color-text);  
}

textarea {
    padding: var(--space-1);
    border-radius: 4px;
    border: 1px solid;
    font-weight: 200;
    letter-spacing: var(--ls-wide);
    width: 90%;
    background-color: rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); /
}

#booking-form button {
    align-self: start;
}

.contact-right {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
    width: 60%;
}

.map iframe {
  filter: grayscale(100%) brightness(90%);
  width: clamp(300px, 60vw, 600px);
  height: clamp(200px, 60vh, 600px);
}

@media (max-width: 500px) {
    .contact-title {
        font-size: var(--fs-41);
    }
    .contact-content {
        flex-direction: column;
    }
    .contact-left {
        width: 100%;
        border-right: none;
    }
    .contact-right {
        width: 100%;
    }

    .map {
        padding: var(--space-4);
    }

    .contact-right {
        margin-bottom: var(--section-y);
    }
} 
/*===================
    footer
===================*/

#end {
    height: 60vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
}
.end-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
}

.end-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.end-links {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    font-weight: 300;
}

.circle {
    width: 8px;
    height: 8px;
    background-color: var(--color-sage);
    border-radius: 50%;
    justify-self: center;
}

.end-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
    position: relative;
    padding: var(--space-2) 0;
}

.end-content p {
    font-weight: 300;
}

.end-title {
    font-size: var(--fs-20);
}

.end-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    font-size: var(--fs-25);
    font-weight: 300;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.footer p {
    font-weight: 300;
    margin-top: var(--space-4);
}

.footer::after, .end-content::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
    border-radius: 4px;
}

.end-menu a {
    transition: all .6s ease;
    position: relative;
    transform-origin: center;
    display: flex;
    align-self: center;
    cursor: pointer;
    z-index: 8;
}

.end-menu a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #000;
    transform-origin: left;
    transform: scaleX(0);
    transition: all .6s ease;
}

.end-menu a:hover::after {
    transform: scaleX(1);
}

@media (max-width: 500px) {

    #end {
        margin-top: var(--space-8);
    }

    .end-info {
        flex-direction: column;
        gap: var(--space-2);
        align-items: start;
    }
    .end-content {
        flex-direction: column;
        gap: var(--space-2);
    }

    .end-menu {
        align-items: center;
    }
}

.text-up {
    overflow: hidden;
}
