:root{
  --charcoal: #201F18;
  --burgundy: #8B2635;
  --rose: #C8899C;
  --gold: #E7A74B;
  --chartreuse: #B9B302;

  --bg-dark: #0b0b09;
  --muted: rgba(255,255,255,0.72);
  --muted-2: rgba(255,255,255,0.6);
  --glass: rgba(255,255,255,0.03);

  --max-width: 1150px;
  --radius: 12px;
  --ease: cubic-bezier(.2,.9,.3,1);
}


*{
  box-sizing: border-box;
}

html,
body{
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color: var(--muted);
  background: var(--bg-dark);
}

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

.wrap{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}


.hero{
  min-height: 84vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, var(--charcoal) 0%, #0b0b09 60%);
  overflow: hidden;
}

.hero video.bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: contrast(.95) saturate(.95) brightness(.7);
}

.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,6,5,0.25), rgba(8,6,5,0.6));
  z-index: 1;
}


.nav{
  position: relative;
  z-index: 10;
  padding: 18px 0;
}

.nav-sticky{
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, rgba(8,6,5,0.02), rgba(8,6,5,0.02));
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand{
  font-weight: 800;
  letter-spacing: .6px;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot{
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  transform: skewX(-10deg);
}

.nav-links{
  display: flex;
  gap: 14px;
}

.nav-links a{
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted-2);
  font-weight: 600;
}

.nav-links a.active{
  color: var(--gold);
  background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent);
}


.hero-body{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 36px 0;
}

.hero-left{
  flex: 1;
  color: var(--muted);
}

.hero-left h1{
  font-size: 36px;
  margin: 0 0 12px;
  color: white;
  line-height: 1.02;
}

.lead{
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero-cta{
  display: flex;
  gap: 12px;
}


.btn{
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.btn.primary{
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  color: var(--charcoal);
}

.btn.ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--muted-2);
}

.btn.tiny{
  padding: 6px 8px;
  font-size: 13px;
  border-radius: 8px;
}


.hero-right{
  width: 380px;
  display: flex;
  justify-content: flex-end;
}

.mockups{
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.mockups img{
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.03);
}


.exp-anim{
  display: flex;
  gap: 6px;
  font-weight: 900;
  font-size: 64px;
  letter-spacing: 6px;
}

.exp-anim span{
  display: inline-block;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform-origin: center bottom;
  animation: pop 1.0s var(--ease) both;
}

.exp-anim span:nth-child(odd){
  text-shadow: 0 6px 20px rgba(139,38,53,0.12);
}

.exp-anim span:nth-child(1){ animation-delay: .05s; }
.exp-anim span:nth-child(2){ animation-delay: .1s; }
.exp-anim span:nth-child(3){ animation-delay: .15s; }
.exp-anim span:nth-child(4){ animation-delay: .2s; }

@keyframes pop{
  0%{
    transform: translateY(30px) rotateX(30deg) scale(.95);
    opacity: 0;
  }
  60%{
    transform: translateY(-6px) rotateX(0deg) scale(1.03);
    opacity: 1;
  }
  100%{
    transform: translateY(0) scale(1);
  }
}


main{
  padding: 36px 0 80px;
}

.mood{
  padding: 36px 0;
}

.mood h2{
  color: var(--gold);
  margin: 0 0 12px;
}

.mood-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.frame{
  background: var(--glass);
  border-radius: 12px;
  padding: 6px;
  overflow: hidden;
  transition: transform .25s var(--ease);
}

.frame img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.frame:hover{
  transform: translateY(-6px);
}

.quick-info{
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.info{
  flex: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  padding: 16px;
  border-radius: 10px;
}


.page-content{
  padding-top: 24px;
  padding-bottom: 40px;
}

.page-header h1{
  margin: 0;
  font-size: 28px;
}


.filters{
  display: flex;
  gap: 8px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.chip{
  background: rgba(255,255,255,0.06);
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--muted);
}

.chip.small{
  font-size: 13px;
}

.chip.active{
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  color: var(--charcoal);
}


.space-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 cards per row */
  gap: 24px;
  margin-top: 16px;
}

.space-card{
  display: flex;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  padding: 12px;
  border-radius: 12px;
  align-items: flex-start;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}

.space-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(2,4,6,0.6);
}

.space-card img{
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.card-body h4{
  margin: 0 0 6px;
}

.card-body p.sm{
  margin: 0;
  color: var(--muted-2);
  font-size: 14px;
}

.meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.chips{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal[aria-hidden="false"]{
  display: flex;
}

.modal-panel{
  background: var(--charcoal);  
  border-radius: 12px;
  padding: 14px;
  max-width: 920px;
  width: 94%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.modal-close{
  position: absolute;
  right: 22px;
  top: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
}

.modal-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.modal-media img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

.modal-info h3{
  margin: 0 0 8px;
}

.modal-chips{
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}


.booking-form label{
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-row{
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.form-row input{
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  background: transparent;
  color: var(--muted);
}

.booking-form button{
  margin-top: 6px;
}


.site-footer{
  padding: 26px 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 14px;
}


.small{
  font-size: 13px;
}

.muted{
  color: var(--muted-2);
}


.experience-section{
  width: 100%;
  padding: 80px 0 100px;
  background: linear-gradient(
    180deg,
    rgba(11,11,9,0.9),
    rgba(11,11,9,1)
  );
  text-align: center;
}

/* EXPERIENCE — assembly animation */
.exp-assemble span {
  display: inline-block;
  opacity: 0;
  transform: translateX(var(--start)) scale(0.9);
  animation: assemble 1s var(--ease) forwards;
}

.exp-assemble span:nth-child(odd) {
  --start: -120px; /* odd letters come from left */
}

.exp-assemble span:nth-child(even) {
  --start: 120px;  /* even letters come from right */
}

.exp-assemble span:nth-child(1){ animation-delay: .05s; }
.exp-assemble span:nth-child(2){ animation-delay: .12s; }
.exp-assemble span:nth-child(3){ animation-delay: .19s; }
.exp-assemble span:nth-child(4){ animation-delay: .26s; }
.exp-assemble span:nth-child(5){ animation-delay: .33s; }
.exp-assemble span:nth-child(6){ animation-delay: .40s; }
.exp-assemble span:nth-child(7){ animation-delay: .47s; }
.exp-assemble span:nth-child(8){ animation-delay: .54s; }
.exp-assemble span:nth-child(9){ animation-delay: .61s; }
.exp-assemble span:nth-child(10){ animation-delay: .68s; }

/* COVER TAGLINE AT TOP OF HOME PAGE */
.hero-tagline{
  position: relative;
  z-index: 2;
  margin-top: 32px;
  margin-bottom: 10px;
  text-align: center;
}

.tagline-animated{
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(11,11,9,0.65);
  backdrop-filter: blur(6px);
  font-size: clamp(16px, 2.6vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--muted);
  cursor: default;
  transition:
    background .35s var(--ease),
    color .35s var(--ease),
    box-shadow .35s var(--ease),
    transform .35s var(--ease),
    border-color .35s var(--ease);
}

.tagline-animated span{
  display: inline-block;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  animation: tagline-in .7s var(--ease) forwards;
}

/* Stagger the words so they feel like pieces assembling */
.tagline-animated span:nth-child(1){ animation-delay: .05s; }
.tagline-animated span:nth-child(2){ animation-delay: .11s; }
.tagline-animated span:nth-child(3){ animation-delay: .17s; }
.tagline-animated span:nth-child(4){ animation-delay: .23s; }
.tagline-animated span:nth-child(5){ animation-delay: .29s; }
.tagline-animated span:nth-child(6){ animation-delay: .35s; }
.tagline-animated span:nth-child(7){ animation-delay: .41s; }
.tagline-animated span:nth-child(8){ animation-delay: .47s; }
.tagline-animated span:nth-child(9){ animation-delay: .53s; }
.tagline-animated span:nth-child(10){ animation-delay: .59s; }
.tagline-animated span:nth-child(11){ animation-delay: .65s; }
.tagline-animated span:nth-child(12){ animation-delay: .71s; }

/* Hover state: playful, glowy gradient pill */
.tagline-animated:hover{
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  color: var(--charcoal);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255,255,255,0.5);
}

/* A little "pop" on each word when we first land */
@keyframes tagline-in{
  0%{
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }
  60%{
    opacity: 1;
    transform: translateY(-4px) scale(1.04);
  }
  100%{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* STORY STATEMENTS UNDER THE MAIN TAGLINE */
.story-strip{
  position: relative;
  z-index: 2;
  margin-top: 18px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.story-chip{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(11,11,9,0.55);
  backdrop-filter: blur(5px);
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--muted-2);
  cursor: default;
  transition:
    background .35s var(--ease),
    color .35s var(--ease),
    box-shadow .35s var(--ease),
    transform .35s var(--ease),
    border-color .35s var(--ease),
    opacity .35s var(--ease);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation: storyChipIn .7s var(--ease) forwards;
}

/* Staggered entrance like the main line */
.story-chip:nth-child(1){ animation-delay: .25s; }
.story-chip:nth-child(2){ animation-delay: .33s; }
.story-chip:nth-child(3){ animation-delay: .41s; }
.story-chip:nth-child(4){ animation-delay: .49s; }
.story-chip:nth-child(5){ animation-delay: .57s; }
.story-chip:nth-child(6){ animation-delay: .65s; }

/* Hover: same gradient + movement as the main statement,
   plus a subtle "blink" (show / disappear / show) */
.story-chip:hover{
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  color: var(--charcoal);
  box-shadow: 0 12px 34px rgba(0,0,0,0.55);
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255,255,255,0.5);
  animation: storyChipBlink .9s var(--ease) forwards;
}

/* First-time fade / slide in */
@keyframes storyChipIn{
  0%{
    opacity: 0;
    transform: translateY(12px) scale(0.94);
  }
  60%{
    opacity: 1;
    transform: translateY(-3px) scale(1.04);
  }
  100%{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hover "show–disappear–show" effect */
@keyframes storyChipBlink{
  0%{
    opacity: 1;
  }
  40%{
    opacity: 0.1; /* disappears briefly */
  }
  100%{
    opacity: 1;   /* comes back */
  }
}

/* Optional: a bit more breathing room on small screens */
@media (max-width: 600px){
  .story-strip{
    margin-top: 14px;
    gap: 10px;
  }
  
  .story-chip{
    font-size: 11px;
    letter-spacing: 0.1em;
    text-align: center;
  }
}



/* Keyframes for assembling fragments */
@keyframes assemble {
  0% {
    opacity: 0;
    transform: translateX(var(--start)) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateX(10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-logo{
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-logo img{
  max-width: 160px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
}


.page-connect .page-header h1{
  font-size: 32px;
  margin-bottom: 8px;
}

.page-connect .page-header p{
  max-width: 640px;
}


.quote-block{
  margin: 32px 0 40px;
  text-align: center;
}

.quote-text{
  font-size: 26px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote-accent{
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


.contact-section{
  padding: 24px 0 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border-radius: 16px;
  margin-bottom: 32px;
}

.contact-section h2{
  margin-top: 0;
  margin-bottom: 8px;
}

.contact-section p{
  max-width: 720px;
  margin-bottom: 20px;
}

.contact-form textarea{
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  background: transparent;
  color: var(--muted);
  resize: vertical;
}

.contact-form textarea::placeholder{
  color: var(--muted-2);
}

.contact-actions{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}


.connect-image{
  padding: 10px 0 40px;
}

.connect-image-frame{
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.25);
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  text-align: center;
  padding: 16px;
}

.connect-image-frame img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}


/* 🔧 RESPONSIVE: TABLET */
@media (max-width: 1000px){
  /* Hero tweaks */
  .hero-body{
    padding: 28px 0;
    gap: 20px;
  }

  .hero-left h1{
    font-size: 30px;
  }

  .hero-right{
    display: none;
  }

  /* Grids */
  .mood-grid{
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Info blocks stack */
  .quick-info{
    flex-direction: column;
    gap: 18px;
  }

  /* Modal: single-column layout */
  .modal-grid{
    grid-template-columns: 1fr;
  }

  /* EXPERIENCE scaling */
  .exp-anim{
    font-size: 42px;
  }

  .exp-big{
    font-size: 72px;
  }
}

/* 🔧 RESPONSIVE: MOBILE */
@media (max-width: 600px){
  /* Global padding */
  .wrap{
    padding: 0 16px;
  }

  /* Hero layout */
  .hero-body{
    flex-direction: column;
    gap: 18px;
    padding: 24px 0;
  }

  .hero-left h1{
    font-size: 26px;
  }

  .mood{
    padding: 28px 0;
  }

  /* Grids → single column */
  .mood-grid{
    grid-template-columns: 1fr;
  }

  .space-grid{
    grid-template-columns: 1fr;
  }

  /* Forms stack */
  .form-row{
    flex-direction: column;
  }

  /* EXPERIENCE scaling on small screens */
  .exp-anim{
    font-size: 34px;
  }

  .exp-big{
    font-size: 48px;
    letter-spacing: 8px;
  }

  /* Footer spacing */
  .site-footer{
    padding: 20px 0;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.feature-card {
  padding: 26px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}


.feature-card::before {
  content:"";
  display:block;
  height:4px;
  width:100%;
  margin-bottom:16px;
  border-radius:8px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  opacity:0.85;
}


.feature-card h3{
  margin-top:0;
  margin-bottom:10px;
  color:white;
  font-size:22px;
  font-weight:700;
}


.feature-card p{
  color:var(--muted-2);
  line-height:1.65;
  font-size:15px;
}


@media(max-width:900px){
  .feature-grid{
    grid-template-columns:1fr;
  }
}

.layout-video-center{
  margin: 32px auto 0;
  max-width: 780px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(3px);
}

.layout-video-center video{
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: black; 
}

/* smaller logo on connect page */
.page-connect .brand{
  font-size: 6px;   
}

.page-connect .logo-dot{
  width: 8px;
  height: 8px;          
  border-radius: 2px;
}

/* ----------------------------------------
   GLOBAL SPACING IMPROVEMENTS
---------------------------------------- */

/* More breathing room across the whole site */
section,
.mood,
.quick-info,
.page-content {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

/* Increase spacing between major hero elements */
.hero-body {
  padding: 60px 0 !important;
  gap: 48px !important;  /* more space between left copy + right image */
}

.hero-left h1 {
  margin-bottom: 20px !important;
}

.hero-cta {
  margin-top: 22px !important;
  margin-bottom: 32px !important;
}

/* Space between main tagline and story chips */
.hero-tagline {
  margin-top: 90px !important;
  margin-bottom: 24px !important;
}

/* Space between the “chips cloud” */
.story-strip {
  margin-bottom: 50px !important;
  row-gap: 16px !important;
}

/* Add more space above EXPERIENCE */
.experience-section {
  padding-top: 120px !important;
  padding-bottom: 140px !important;
}

/* Layouts grid spacing */
.mood h2 {
  margin-bottom: 28px !important;
}

.mood-grid {
  gap: 28px !important;
}

/* Quick-info section breathing room */
.quick-info {
  gap: 38px !important;
  margin-top: 50px !important;
}

.info {
  padding: 28px !important;
  border-radius: 14px !important;
}

/* Connect-page content spacing */
.page-header {
  margin-bottom: 40px !important;
}

/* Contact block spacing */
.contact-section {
  padding: 50px 0 54px !important;
  margin-top: 40px !important;
  margin-bottom: 60px !important;
}

.contact-form textarea {
  margin-top: 18px !important;
}

.connect-image {
  padding: 40px 0 80px !important;
}

/* Footer spacing */
.site-footer {
  padding: 40px 0 !important;
}
/* WHO WE'RE FOR / WHY WE EXIST — animated cards */

#who-why {
  position: relative;
  z-index: 1;
}

/* Base card enhancements */
#who-why .info{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: radial-gradient(circle at top left,
    rgba(231,167,75,0.08),
    rgba(11,11,9,0.95)
  );
  box-shadow: 0 18px 45px rgba(0,0,0,0.55);
  transform-origin: center center;
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease),
    background .35s var(--ease),
    opacity .35s var(--ease);
}

/* Soft gradient ring using ::before */
#who-why .info::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background: conic-gradient(
    from 180deg,
    rgba(139,38,53,0.8),
    rgba(231,167,75,0.9),
    rgba(185,179,2,0.7),
    rgba(139,38,53,0.8)
  );
  opacity:0.16;
  z-index:-1;
}

/* Swirl-in entrance animations */
#who-why .info:first-child{
  opacity:0;
  transform: translateX(-40px) rotate(-2deg) scale(.96);
  animation: swirlInLeft 0.9s var(--ease) forwards;
  animation-delay: .15s;
}

#who-why .info:last-child{
  opacity:0;
  transform: translateX(40px) rotate(2deg) scale(.96);
  animation: swirlInRight 0.9s var(--ease) forwards;
  animation-delay: .25s;
}

@keyframes swirlInLeft{
  0%{
    opacity:0;
    transform: translateX(-40px) translateY(10px) rotate(-5deg) scale(.94);
  }
  60%{
    opacity:1;
    transform: translateX(6px) translateY(-4px) rotate(2deg) scale(1.03);
  }
  100%{
    opacity:1;
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes swirlInRight{
  0%{
    opacity:0;
    transform: translateX(40px) translateY(10px) rotate(5deg) scale(.94);
  }
  60%{
    opacity:1;
    transform: translateX(-6px) translateY(-4px) rotate(-2deg) scale(1.03);
  }
  100%{
    opacity:1;
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  }
}

/* Hover: subtle float + tilt + brighter border */
#who-why .info:hover{
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 60px rgba(0,0,0,0.7);
  border-color: rgba(255,255,255,0.4);
  background: radial-gradient(circle at top left,
    rgba(231,167,75,0.12),
    rgba(11,11,9,0.98)
  );
}

/* Slight tilt difference so each feels unique on hover */
#who-why .info:first-child:hover{
  transform: translateY(-6px) rotate(-1deg) scale(1.01);
}

#who-why .info:last-child:hover{
  transform: translateY(-6px) rotate(1deg) scale(1.01);
}

/* Mobile: reduce motion/tilt a bit so it doesn’t feel too intense */
@media (max-width: 600px){
  #who-why .info{
    box-shadow: 0 12px 32px rgba(0,0,0,0.55);
  }
  #who-why .info:first-child,
  #who-why .info:last-child{
    transform: translateX(0) translateY(20px) scale(.97);
  }
}

.page-home .mockups{
  display: flex;          
  justify-content: center;
}

.page-home .mockups img{
  width: auto !important;
  height: auto !important;
  max-width: 260px;       
  object-fit: contain !important;  
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

