/* ==========================================
   RESET
========================================== */

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* ==========================================
   VARIABLES
========================================== */

:root {
  /* Layout */
  --container: 1280px;
  --radius: 20px;
  /* Typography */
  --font-body: 'proxima-nova', sans-serif;
  /* Colors */
  --color-background: #F8F5EF;
  --color-surface: #FFFFFF;
  --color-text: #666030;
  --color-text-light: #e9d9cc;
  --color-text-dark: #383317;
  --color-sage: #666030;
  --color-rose: #e4bebc;
  --color-brown: #b7856a;
  --color-lilac: #d2daf9;
  --color-burgundy: #62162c;
  --color-border: #E5DED4;
  --color-beige: #e9d9cc;
}

/* ==========================================
   BASE
========================================== */

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-background);
  background-image: url('../images/hero-bkg.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(var(--container), 90%);
  margin: 0 auto;
}

/* ==========================================
   ANNOUNCEMENT BAR
========================================== */

.announcement-bar {
  background: var(--color-sage);
  text-align: center;
  padding: 12px 20px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.announcement-bar a {
  color: var(--color-text-light);
  transition: all .25s ease;
}
.announcement-bar a:hover {
  opacity: 0.7;
}

/* ==========================================
   LOGO
========================================== */

.logo-wrapper {
  text-align: center;
  padding: 40px 20px 24px;
}
.logo img {
  display: block;
  height: 22px;
  width: auto;
  margin: 0 auto;
  transition: all .25s ease;
}

.logo:hover img{
  opacity: 0.6;
}

.logo-wrapper,
.main-nav {
  position: relative;
  z-index: 2;
}

/* ==========================================
   NAVIGATION
========================================== */

header{
  position: relative;
}

.main-nav {
  backdrop-filter: blur(8px);
}

.main-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
}

.main-nav a {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--color-sage);
  transition: all .25s ease;
}

.main-nav a:hover {
  color: var(--color-text-dark);
  transform: translateY(-1px);
  text-decoration: underline;
}

/* =========================
   HAMBURGER (hidden desktop)
========================= */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--color-sage);
}

@media (max-width: 768px) {

  .announcement-bar {
    font-size: .85rem;
  }

  /* SHOW HAMBURGER */
  .menu-toggle {
    display: block;
    margin: 0 auto;
    width: 40px;
    text-align: center;
    padding:0;
    font-size: 3rem;
    height: 40px;
    line-height: 0;
  }

  /* NAV COLLAPSED STATE */
  .main-nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease;
  }

  /* NAV OPEN STATE */
  .main-nav.open {
    max-height: 500px;
    opacity: 1;
  }

  .main-nav a {
    font-size: .85rem;
  }

  /* MOBILE MENU LAYOUT */
  .main-nav ul {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem 0;
  }
}

/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  max-width: 65ch;
  color: var(--color-text-light);
}

/* ==========================================
   BUTTONS
========================================== */

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  background: var(--color-sage);
  color: var(--color-text-light);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all .3s ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  opacity: .8;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  background: var(--color-brown);
  color: var(--color-text-light);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  transition: all .3s ease;
}

.button-secondary:hover {
  transform: translateY(-2px);
  opacity: .8;
}

.button-burgundy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  background: var(--color-burgundy);
  color: var(--color-rose);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  transition: all .3s ease;
}

.button-burgundy:hover {
  transform: translateY(-2px);
  opacity: .8;
}

.button-lilac {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  background: var(--color-lilac);
  color: var(--color-sage);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  transition: all .3s ease;
}

.button-lilac:hover {
  transform: translateY(-2px);
  opacity: .8;
}

@media (max-width: 768px) {
  .button-primary, .button-secondary, .button-burgundy, .button-lilac{
    padding: .75rem 3rem;
    font-size: .85rem;
  }
}

/* ==========================================
   SECTIONS
========================================== */

section {
  padding: 8rem 0;
}


/* ==========================================
   HERO
========================================== */

.hero {
  padding: 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: block;
  margin-bottom: 1rem;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-text);
}

.hero h1 {
  color: var(--color-brown);
  font-family: "gyst-variable", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: inherit;
}

.hero p {
  color: var(--color-sage);
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: left;
  gap: 1rem;
}

/* ==========================================
   HERO COLLAGE
========================================== */

.hero-collage {
    position: relative;
    height: 700px;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.childhood-photo {
  animation: float 5s ease-in-out infinite;
  box-shadow: 5px 5px 12px rgba(0,0,0, 0.1);
  position: absolute;
  right: 180px;
  top: 20px;
  width: 200px;
  z-index: 10;
}
.agenda {
  animation: float 8s ease-in-out infinite;
  position: absolute;
  right: -52px;
  top: 0;
  width: 300px;
  z-index: 0;
}
.art-print {
  position: absolute;
  width: 360px;
  bottom: 180px;
  left: 80px;
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}
.pattern {
  position: absolute;
  width: 1000px;
  bottom: 0;
  right: -52px;
  z-index: -1;
}
.butterfly {
  position: absolute;
  width: 200px;
  top: 60px;
  left: -18px;
  animation: float 6s ease-in-out infinite;
  z-index: 100;
}
.leaf {
  position: absolute;
  width: 150px;
  bottom: 50px;
  right: 0;
  animation: float 12s ease-in-out infinite;
  z-index: 100;
}
.wildflowers {
  position: absolute;
  width: 400px;
  bottom: -6px;
  left: -50px;
  z-index: 0;
}
.flowers-art {
  position: absolute;
  width: 220px;
  bottom: 100px;
  right: 100px;
  animation: float 12s ease-in-out infinite;
  box-shadow: 5px 5px 12px rgba(0,0,0, 0.1);
  z-index: 1;
}
.brand-mark {
  position: absolute;
  width: 80px;
  top: 120px;
  left: 212px;
  z-index: 3;
}



/* ==========================================
   RESPONSIVE GENERAL
========================================== */

@media (max-width: 1200px) {

  /*HERO COLLAGE*/
  .art-print {
    left: -50px;
    bottom: 150px;
  }
  .flowers-art {
    width: 200px;
    bottom: 80px;
    right: 80px;
  }
  .wildflowers {
    left: -50px;
  }
  .brand-mark {
    left: 220px;
    top: 240px;
  }
}

@media (max-width: 900px) {

  .hero-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
    padding: 1rem 0;
  }

  .hero-buttons {
    justify-content: center;
  }
  .art-print {
    left: -70px;
  }
  .brand-mark {
    left: 195px;
  }
}

@media (max-width: 768px) {

  .logo {
    font-size: 2.25rem;
  }

  .hero-copy{
    padding: 0 1rem;
  }

  .hero-collage {
    .brand-mark, .art-print{
      display: none;
    }
    .butterfly{
      left: -8px;
      top: 0;
    }
    .childhood-photo{
      top: 170px;
    }
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px; 
    text-align: center;
  }

  section, section.contact-cta, section.selected-projects {
    padding: 4rem 0;
  }

}
/* ==========================================
   SCROLLING STRIP
========================================== */

.scrolling-strip {
  overflow: hidden;
  padding: 0.75rem 0;
  background: var(--color-brown);
}

.scrolling-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.scrolling-track span {
  white-space: nowrap;
  padding-right: 0;
  font-size: .60rem;
  font-weight: 700;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@media (max-width: 768px) {
  .scrolling-track span{
    font-size: .50rem;
  }
}

/* ==========================================
   SELECTED PROJECTS
========================================== */

.selected-projects {
  background:var(--color-beige);
  padding: 6rem 0;
}

/* ------------------------------------------
   Section Intro
------------------------------------------ */

.section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--color-burgundy);
}

.section-kicker {
  display: block;
  margin-bottom: 1rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section-intro h2 {
  font-family: "gyst-variable", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.section-intro h2 em{
  font-style: italic;
}

.section-intro p {
  margin: 0 auto;
  color: var(--color-burgundy);
}

/* ==========================================
 PROJECTS GRID
========================================== */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
      "vintage moms tulip"
      "vintage wild tulip"
      "butterfly wild wildflowers";
  gap: 2rem;
  align-items: start;
}

/* ==========================================
 GRID AREAS
========================================== */

.vintage-floral {
  grid-area: vintage;
}

.moms-cafe {
  grid-area: moms;
}

.tulip-fields {
  grid-area: tulip;
}

.wild-garden {
  grid-area: wild;
}

.butterfly-blooms {
  grid-area: butterfly;
}

.wildflowers-collection {
  grid-area: wildflowers;
}

/* ==========================================
 PROJECT CARD
========================================== */

.project-card {
  overflow: hidden;
}

.project-image {
  display: block;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s ease;
}

.project-image:hover img {
  transform: scale(1.03);
}

/* ==========================================
 IMAGE RATIOS
========================================== */

.vintage-floral .project-image {
  aspect-ratio: 4 / 5;
}

.moms-cafe .project-image {
  aspect-ratio: 4 / 3;
}

.tulip-fields .project-image {
  aspect-ratio: 4 / 5;
}

.wild-garden .project-image {
  aspect-ratio: 4 / 5;
}

.butterfly-blooms .project-image {
  aspect-ratio: 4 / 3;
}

.wildflowers-collection .project-image {
  aspect-ratio: 4 / 3;
}

/* ==========================================
 PROJECT META
========================================== */

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1rem;
  border-bottom: 1px solid rgba(183,133,106, 0.5);
  padding-bottom: 0.73rem;
}

.project-meta h3 {
  color:var(--color-brown);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-meta h3 a {
  transition: opacity .25s ease;
}

.project-meta h3 a:hover {
  opacity: .6;
}

.project-meta span {
  color:var(--color-brown);
  flex-shrink: 0;
  font-family: "gyst-variable", sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: lowercase;
  font-size: .75rem;
  text-align: right;

}

/* ==========================================
 PORTFOLIO BUTTON
========================================== */

.portfolio-button {
  text-align: center;
  margin-top: 4rem;
}

/* ==========================================
 MOBILE
========================================== */

@media (max-width: 768px) {

  .projects-grid {
      grid-template-columns: 1fr;
      grid-template-areas:
          "vintage"
          "moms"
          "tulip"
          "wild"
          "butterfly"
          "wildflowers";
      gap: 3rem;
  }

  /* Todas iguales en mobile */

  .project-image {
      aspect-ratio: 16 / 10 !important;
  }
  .project-meta {
      flex-direction: column;
      gap: .35rem;
  }

  .project-meta span {
      text-align: left;
  }
}

/* ==========================================
   QUOTE BANNER
========================================== */

.quote-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../images/quote-banner/hydrangeas.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 10, .35);
}

.quote-content {
  color: var(--color-text-light);
  font-family: "gyst-variable", sans-serif;
  /*max-width: 700px;*/
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.quote-content h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
}

.quote-content em {
  font-style: italic;
}

.quote-banner.foliage{
  background-image: url("../images/quote-banner/foliage.jpg");
}

@media (min-width: 768px) and (max-width: 1200px) {
  .quote-content em{
    display: block;
  }
}
/* ==========================================
   ABOUT SECTION
========================================== */

.about-section {
  background-color: #f3ede6;
  background-image: url("../images/about/about-bkg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color:var(--color-burgundy);
  overflow: hidden;
  padding: 8rem 0;
}

.about-content h2{
  font-family: "gyst-variable", sans-serif;
  font-size: 3rem;
}

.about-content p {
  color:var(--color-burgundy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-content p {
    padding: 0 2 rem;
  }
  .about-content .button-burgundy{
    margin-top: 1rem;
  }
}

/* ------------------------------------------
   PHOTO
------------------------------------------ */

.about-photo {
  display: flex;
  justify-content: center;
}

.photo-frame {
  position: relative;
  max-width: 420px;
  background: #d8a283;
  background-image: url("../images/about/photo-frame.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 2rem;
}

.photo-frame img {
  display: block;
  width: 100%;
}

/* ------------------------------------------
   CONTENT
------------------------------------------ */

.about-content {
  max-width: 540px;
}

.about-content h2 {
  margin-bottom: 2rem;
  color: var(--color-burgundy);
}

.about-content h2 em {
  display: block;
  font-style: italic;
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-content .button-primary {
  margin-top: 1rem;
}

/* ==========================================
   MOBILE ABOUT
========================================== */

@media (max-width: 768px) {
  .quote-banner {
    min-height: 320px;
  }

  .about-photo {
    width: 50%;
    margin: 0 auto;
  }

  .about-section {
    padding: 5rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-content {
    max-width: none;
    text-align: center;
  }

  .about-content h2 {
    text-align: center;
  }
}

/* ==========================================
   CREATIVE UNIVERSE
========================================== */

.creative-universe {
  background: var(--color-sage);
  padding: 8rem 0;
  overflow: hidden;
}

.universe-grid {
  display: grid;
  align-items: start;
  gap: 2rem;
  grid-auto-flow: row;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
}

/* ------------------------------------------
   FILA SUPERIOR
------------------------------------------ */

.item-1 {
  grid-column: 1 / 4;
  grid-row: 1;
}
.item-2 {
  grid-column: 4 / 7;
  grid-row: 1;
}

.item-3 {
  grid-column: 8 / 11;
  grid-row: 1;
}

.item-4 {
  grid-column: 10 / 13;
  grid-row: 1;
}

/* ------------------------------------------
   TEXTO CENTRAL
------------------------------------------ */

.universe-content {
  grid-column: 3 / 11;
  grid-row: 2;
  color: var(--color-beige);
  text-align: center;
}

.universe-content h2{
  font-family: "gyst-variable", sans-serif;
  font-size: 3rem;
}
.universe-content h2 em{
  display: block;
}

.universe-content p{
  margin: 2rem 0 0 0;
  max-width: 100%;
}

.universe-content a{
  margin-top: 2rem;
}

/* ------------------------------------------
 FILA INFERIOR
------------------------------------------ */

.item-5 {
  grid-column: 1 / 4;
  grid-row: 3;
}

.item-6 {
  grid-column: 5 / 9;
  grid-row: 3;
}

.item-7 {
  grid-column: 9 / 12;
  grid-row: 3;
}

/* ------------------------------------------
 IMÁGENES
------------------------------------------ */

.universe-item img {
  width: 100%;
  display: block;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.universe-item.item-1 img { 
  left: 150px;
  position: relative;
  width: 90%;
}
.universe-item.item-2 img { 
  position: relative;
  left: 60px;
  top: 100px;
  width: 80%;
  z-index: 5;
}
.universe-item.item-3 img { 
  position: relative;
  right: -50px;
}
.universe-item.item-4 img { 
  width: 50%;
  position: relative;
  top: 190px;
  right: -20px;
}

.universe-item.item-5 img { 
  width: 90%;
  position: relative;
  bottom: 0;
  left: 0;
}

.universe-item.item-6 img { 
  width: 90%;
  position: relative;
  bottom: -80px;
  left: 50px;
}

.universe-item.item-7 img { 
  width: 60%;
  position: relative;
  bottom: -20px;
  right: 60px;
}

/* ------------------------------------------
 DECORATIVOS
------------------------------------------ */
.palette-top {
  position: absolute;
  top: 12%;
  left: 10%;
  width: 50px;
  z-index: 15;
  pointer-events: none;
}
.arrow-top {
  position: absolute;
  top: -5%;
  left: 26%;
  width: 200px;
  z-index: 15;
  pointer-events: none;
}

.scissors {
  position: absolute;
  top: 15%;
  right: 30%;
  width: 120px;
  z-index: 20;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.arrow-right {
  position: absolute;
  top: 37%;
  right: 6%;
  width: 150px;
  z-index: 20;
  pointer-events: none;
}

.butterfly-dark {
  position: absolute;
  bottom: 7%;
  right: 17%;
  width: 10%;
  z-index: 20;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

.notebook {
  position: absolute;
  bottom: -5%;
  left: -3%;
  width: 90px;
  z-index: 20;
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
}

.arrow-bottom {
  position: absolute;
  bottom: -7%;
  left: 27%;
  width: 180px;
  z-index: 25;
  pointer-events: none;
}

.palette-bottom {
  position: absolute;
  bottom: -4%;
  right: 21%;
  height: 50px;
  z-index: 20;
  pointer-events: none;
}

/* ------------------------------------------
 CREATIVE UNIVERSE MOBILE
------------------------------------------ */
@media (max-width: 1200px) {
  .universe-content{
    margin: 3rem 0;
  }
}

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

  .universe-item.item-4 img { 
    width: 70%;
    top: 50%;
  }
  .palette-top{
    top:-5%;
    left: 10%;
  }
  .arrow-right{
    top: 30%;
    right: -2%;
  }
  .scissors{
    top: 10%;
    right:25%;
  }
  .universe-item.item-5 img { 
    bottom: 10%;
    left: 30%;
  }
  .universe-item.item-6 img { 
    width: 120%;
    bottom: -5%;
    left: 35%;
  }
  .universe-item.item-7 img { 
    width: 70%;
    bottom: 10%;
    right: -20%;
  }
  .notebook{
    left:2%;
  }
  .palette-bottom{
    right: 0;
    bottom: -2%;
  }
  .butterfly-dark{
    right: 5%;
    bottom: 20%;
  }
}

@media (max-width: 768px) {

  .creative-universe {
    padding: 5rem 0;
  }

  .universe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: start;
  }

  /* ------------------------------------------
     FILA SUPERIOR
  ------------------------------------------ */

  .item-1 {
    grid-column: 1;
    grid-row: 1;
  }

  .item-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .item-3 {
    grid-column: 1;
    grid-row: 2;
  }

  .item-4 {
    grid-column: 2;
    grid-row: 2;
  }

  /* ------------------------------------------
     TEXTO CENTRAL
  ------------------------------------------ */

  .universe-content {
    grid-column: 1 / -1;
    grid-row: 3;
    text-align: center;
    max-width: 100%;
    padding: 1rem 0;
  }

  /* ------------------------------------------
     FILA INFERIOR
  ------------------------------------------ */

  .item-5 {
    grid-column: 1;
    grid-row: 4;
  }

  .item-6 {
    grid-column: 2;
    grid-row: 4;
  }

  .item-7 {
    grid-column: 1 / -1;
    grid-row: 5;
    max-width: 240px;
    margin: 0 auto;
  }

  /* ------------------------------------------
     RESET DESKTOP OVERLAPS
  ------------------------------------------ */

  .universe-item.item-3 img,
  .universe-item.item-4 img,
  .universe-item.item-5 img,
  .universe-item.item-6 img,
  .universe-item.item-7 img{
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  /* ------------------------------------------
     IMÁGENES
  ------------------------------------------ */

  .universe-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  .arrow-top, .arrow-right, .arrow-bottom{
    display: none;
  }

  .universe-item.item-1 img{
    left:45%;
  }
  .universe-item.item-2 img{
    left: 20px;
  }
  .palette-top{
    top: 3%;
    left: 4%;
  }
  .scissors{
    top: 23%;
    right: 0;
  }
  .universe-item.item-3 img{
    right:-30%;
  }
  .universe-item.item-4 img{
    top: 20%;
    right:-15%;
  }
  .universe-item.item-5 img{
    top: 0;
    left: 25%;
  }
  .universe-item.item-6 img{
    top: 40px;
    right: 5%;
  } 
  .universe-item.item-7 img{
    bottom: 20%;
    left: 25%;
  } 
  .palette-bottom{
    right: 11%;
    bottom: 0;
  }
  .notebook{
    bottom: 10%;
    left: 3%;
  }
  .butterfly-dark{
    bottom: 10%;
    right: 9%;
    width: 25%;
  }
}

/* ==========================================
   PAPER GARDEN CLUB
========================================== */

.paper-garden {
  padding: 8rem 0;
  background-color: #f1e8d7;
  background-image:
    url("../images/paper-garden/floral-bkg.png");
  background-size: 70% auto;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.paper-garden-card {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding: 5rem 4rem 4rem;
  background: var(--color-burgundy);
  text-align: center;
  overflow: visible;
  background-image:
    url("../images/paper-garden/envelope.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}

.paper-garden-content {
  color: var(--color-beige);
}

.paper-garden-content h2 {
  font-family: "gyst-variable", sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.paper-garden-club {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  width: 70px;
}

.paper-garden-content .seal{
  display: block;
  width: 14%;
  margin: 70px auto 30px auto;
}

.paper-garden-content .headline{
  display: block;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 20px 0;
}

.paper-garden-content p {
  max-width: 420px;
  line-height: 1.25rem;
  margin: 0 auto;
}

.paper-garden-content .button-secondary {
  position: absolute;
  left: 50%;
  bottom: -3.5%;
  transform: translateX(-50%);
}

.paper-garden-content .button-secondary:hover {
  opacity: 1;
  background-color: #9e674f;
}

.paper-garden-print {
  position: absolute;
  width: 180px;
  right: -120px;
  top: 70px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.paper-garden-arrow {
  position: absolute;
  width: 120px;
  right: -260px;
  top: 160px;
}

/* ==========================================
   PAPER GARDEN MOBILE
========================================== */

@media (max-width: 1200px) {
  .paper-garden  .paper-garden-arrow{
    display: none;
  }
}

@media (max-width: 900px) {

  .paper-garden {
    padding: 4rem 0;
    background-size: cover;
  }

  .paper-garden .paper-garden-print{
    display: none;
  }

} 

@media (max-width: 768px) {

  .paper-garden-card{
    scale: 0.80;
  }
  .paper-garden .button-secondary{
    bottom: -5.5%;
    scale: 1.25;
    transform: translateX(-37.5%);
  }

  .paper-garden-content span.headline{
    display: none;
  }

  .paper-garden-content p{
    padding: .75rem 0;
  }

  .paper-garden-content .seal{
    width: 31%;
  }

}

/* ==========================================
   CONTACT CTA
========================================== */

.contact-cta {
  background: var(--color-brown);
  padding: 8rem 0;
  text-align: center;
}
.contact-cta .container{
  position: relative;
}

.contact-cta h2 {
  color: var(--color-burgundy);
  font-family: "gyst-variable", sans-serif;
  margin-bottom: 2rem;
}

.contact-cta h2 em {
  display: block;
}

.contact-cta h3{
  color: var(--color-beige);
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .08em;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.25rem;
}

.contact-cta p {
  color: var(--color-beige);
  margin: 20px auto 0 auto;
}

.contact-cta .button-burgundy {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.contact-cta .button-burgundy:hover {
  background-color: #471022;
  opacity: 1;
}
/* ------------------------------------------
   DECORATIVOS
------------------------------------------ */

.mouse {
  position: absolute;
  width: 300px;
  right: 22%;
  bottom: -22%;
  z-index: 0;
}

.star{
  position: absolute;
  right: 20%;
  bottom: 15%;
  width: 40px;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
}
@media (max-width: 1200px) {
  .mouse{
    right: 10%;
    bottom: -24%;
  }
  .star{
    right: 7%;
  }
}

@media (max-width: 768px) {
  .contact-cta h2{
    font-size: 2.25rem;
  }

  .contact-cta h3{
    font-size: .75rem;
  }
  .mouse{
    display: none;
  }
  .star{
    bottom: 3%;
    right: 2%;
  }
}

/* ==========================================
 INSTAGRAM
========================================== */

.instagram-section {
  position: relative;
  padding: 8rem 0;
  background: var(--color-burgundy);
  overflow: hidden;
}


.instagram-section .container {
  position: relative;
}

.instagram-header {
  text-align: center;
  margin-bottom: 3rem;
}

.instagram-header .section-kicker {
  display: block;
  margin-bottom: 1rem;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-rose);
  font-weight: 600;
}

.instagram-header h2 {
  color: var(--color-beige);
  font-family: "gyst-variable", sans-serif;
  font-size: 3rem;
  font-style: italic;
}

.instagram-header h2 a{
  transition: all .25s ease;
}

.instagram-header h2 a:hover{
  color: var(--color-lilac);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.instagram-post {
  display: block;
  overflow: hidden;
}

.instagram-post img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;

}

.instagram-post:hover img {
  transform: scale(1.04);
}

/* ------------------------------------------
 DECORATIVOS
------------------------------------------ */

.instagram-pen {
  position: absolute;
  width: 170px;
  left: 5%;
  top: 18%;
}

.instagram-coffee {
  position: absolute;
  width: 100px;
  right: 2%;
  bottom: -10%;
}


@media (min-width: 768px) and (max-width: 1200px) {
  .instagram-pen {
    left: -2%;
  }

  .instagram-coffee {
    right: -7%;
  }

}
/* ==========================================
 INSTAGRAM MOBILE
========================================== */

@media (max-width: 768px) {

  .instagram-section {
    padding: 5rem 0;
  }

  .instagram-header {
    margin-bottom: 2rem;
  }

  .instagram-header .section-kicker{
    padding: 0 2rem;
  }

  .instagram-header h2{
    font-size: 2rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .instagram-pen,
  .instagram-coffee {
    display: none;
  }

}

/* ==========================================
   FOOTER
========================================== */

.site-footer{
  position: relative;
  overflow: hidden;
  background: var(--color-rose);
  color:var(--color-burgundy);
  padding: 4rem 0 10rem;
}

.footer-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
}

.footer-brand{
  max-width: 600px;
}

.footer-monogram{
  width: 42px;
  margin-bottom: 2rem;
}

.footer-brand h2{
  font-size: 3rem;
  margin-bottom: 2rem;
  font-family: "gyst-variable", sans-serif;
}

.footer-brand h2 em{
  display:block;
}

.footer-social{
  display:flex;
  gap:1rem;
  margin-bottom:2rem;
}

.footer-social a{
  width:28px;
  display:block;
  transition: all .25s ease;
}

.footer-social a:hover{
  opacity: 0.8;
}

.footer-social a.wide{
  width:34px;
}

.footer-social img{
  width:100%;
}

.footer-copyright{
  color:var(--color-burgundy);
  font-size:.65rem;
  font-weight: 700;
  letter-spacing: .08em ;
  text-transform:uppercase;
  letter-spacing:.15em;
}

.footer-nav{
  display: flex;
  flex-direction: column;
  text-align:right;
}

.footer-flower{
  align-self: end;
  display: block;
  margin-bottom:2rem;
  width:70px;

}

.footer-nav ul{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-nav li{
  margin-bottom:1rem;
}

.footer-nav a{
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration:none;
  transition: all .25s ease;
}

.footer-nav a:hover{
  opacity: 0.8;
}


/* ------------------------------------------
 BIG LOGO
------------------------------------------ */

.footer-big-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 0;
  pointer-events: none;
}

.footer-big-logo img {
  display: block;
  width: 101vw;
  max-width: none;
  height: auto;
}

/* ==========================================
   FOOTER MOBILE
========================================== */

@media (max-width: 768px) {

  .site-footer {
    padding: 4rem 0 6rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }

  /* ------------------------------------------
     BRAND
  ------------------------------------------ */

  .footer-brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-monogram {
    margin-bottom: 1.5rem;
  }

  .footer-brand h2 {
    font-size: 2.5rem;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
  }

  .footer-brand h2 em {
    display: block;
  }

  /* ------------------------------------------
     SOCIAL
  ------------------------------------------ */

  .footer-social {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  /* ------------------------------------------
     NAV
  ------------------------------------------ */

  .footer-nav {
    text-align: center;
    width: 100%;
  }

  .footer-flower {
    display: block;
    margin: 0 auto 1.5rem;
  }

  .footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    margin: 0;
    padding: 0;
  }

  .footer-nav li {
    margin: 0;
  }

  /* ------------------------------------------
     BIG LOGO
  ------------------------------------------ */

  .footer-big-logo img {
    width: 220vw;

  }

  .footer-big-logo img {
    width: 100%;
    display: block;
  }

}