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

@font-face {
  font-family: 'Uncut Sans';
  src: url('/fonts/UncutSans-Variable.ttf') format('truetype');
  font-weight: 100 900;
}

:root {
  --bg: #2D2D2D;
  --text: #FEFEF6;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}



/* ============================================================
   CURSOR
   ============================================================ */

* {
  cursor: none !important;
}

#cursor {
  z-index: 99999 !important;
}

.custom-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #c9e0f7;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.custom-cursor.expanded {
  width: 36px;
  height: 36px;
  opacity: 0.6;
}

/* ============================================================
   HEADER
   ============================================================ */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: transform 0.35s ease, opacity 0.35s ease;
  mix-blend-mode: difference;
}

header.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

a.header-name {
  text-decoration: none;
  color: inherit;
}

.header-name {
  font-family: 'Uncut Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
}

.header-nav {
  display: flex;
  gap: 40px;
}

.header-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  border-radius: 6px;
  padding: 6px 14px;
}

.header-nav a:hover {
  opacity: 1;
}

.header-star {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.5;
}

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

  .hero-middle {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.hero-middle-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-middle-row {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.hero-star {
  font-size: 1rem;
  color: #FEFEF7;
  opacity: .7;
  margin-right: 6px;
  vertical-align: super;
}

.hero-paren {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 500;
  font-size: 10rem;
  color: #262626;
  opacity: .7;
  line-height: 1;
   align-self: stretch;    /* stretches to match the paragraph height */
  display: flex;
  align-items: center; 
}

.hero-bio {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.65rem, 0.9vw, 1rem);
  letter-spacing: 0.08em;
  color: #FEFEF7;
  opacity: .7;
  text-align: center;
  max-width: 400px;
  line-height: 1.8;
  opacity: 0;
}
.hero-paren.left {
  transform: translateX(200px);
  color: #FEFEF7;

}

.hero-paren.right {
  transform: translateX(-200px);
  color: #FEFEF7;

}

@keyframes colorFade {
  from { color: #FEFEF7; }
  to   { color: #262626; }
}

.hero-bio {
  opacity: 0;

}

@keyframes openLeft {
  to { transform: translateX(0); }
}

@keyframes openRight {
  to { transform: translateX(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}
.hero-wrapper {
  position: relative;
  z-index: 0;
  height: 190vh;
  background: transparent;
}


.hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: flex-end;        /* sits at the bottom */
  padding: 0 32px 0;            /* matches projects section margin */
}

.hero-text-bottom {
  display: grid;
  grid-template-columns: repeat(9, .1fr);
  width: 100%;
  margin-bottom: -0.15em;
  opacity: 0;
  transform: translateY(60px);
   overflow: hidden;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-text-bottom span {
 
  text-align: center;
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 17vw, 20rem);
  color: #262626;
  line-height: 1;
  -webkit-text-stroke: 10px #262626;
  paint-order: stroke fill;  
}


/* ============================================================
   PROJECTS SECTION — white floating panel
   ============================================================ */

   html {
  scroll-behavior: smooth;
}

.projects-section {
  background-color: #FEFEF6;
  color: #2D2D2D;
  padding: 140px 64px;
  position: relative;
  z-index: 10;
  border-radius: 32px;
  margin: 0 32px 32px;
  margin-top: -100vh;
  box-shadow: none;
}

.projects-header {
  margin-left: calc(5%);
  margin-bottom: 64px;
}

.projects-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(8rem, 6vw, 5rem);
  letter-spacing: 0.02em;
  color: #2D2D2D;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.projects-title.revealed {
  opacity: 1;
  transform: translateY(0);
}
.projects-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2vw, 1rem);
  letter-spacing: 0.05em;
  color: #2D2D2D;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.projects-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}
.projects-grid {
  display: flex;
  gap: 48px;
  margin-left: calc(3%);
}

.folder-item {
  flex: 1;
  cursor: pointer;
   opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.folder-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.folder-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.2s ease;
}

.folder-img:hover {
  transform: translateY(-4px);
}
/* ============================================================
   FOOTER
   ============================================================ */

footer {
  position: static;
  background: #2D2D2D;
  color: #2D2D2D;
  padding: 10px 0 40px;
  border-radius: 0;
}
.footer-wrapper {
  background: #2D2D2D;
  padding-top: 20rem;
}
.footer-inner {
  width: 100%;
  margin: 0;
  padding: 0 64px;
}

.footer-logo-text {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 0;
  overflow: hidden;
}

.footer-logo-text span {
  flex: 1;
  text-align: center;
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 9rem);
  color: #FEFEF7;
  display: inline-block;
}

.footer-logo-text .paren {
  flex: 0.5;
}

.footer-logo-text .gap {
  flex: 0.8;
}

.footer-divider-top {
  border: none;
  border-top: 1px solid #FEFEF7;
  margin: 0;
  opacity: 0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  padding: 32px 0;
  opacity: 0;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom-left a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.6rem, 0.8vw, 0.75rem); /* smaller */
  letter-spacing: 0.08em;
  color: #FEFEF7;
  text-decoration: none;
  opacity: .7;
  transition: opacity 0.2s ease;
}

.footer-bottom-left a:hover {
  opacity: 1;
}

.footer-bottom-center {
  display: flex;
  justify-content: center;
}

.footer-contact-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.6rem, 0.8vw, 0.75rem); /* smaller */
  letter-spacing: 0.08em;
  color: #FEFEF7;
  text-decoration: underline;
  opacity: .7;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.footer-contact-btn:hover {
  opacity: 1;
}

.footer-bottom-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-bottom-right a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.6rem, 0.8vw, 0.75rem); /* smaller */
  letter-spacing: 0.08em;
  color: #FEFEF7;
  text-decoration: none;
  opacity: .7;
  transition: opacity 0.2s ease;
}

.footer-bottom-right a:hover {
  opacity: 1;
}

/* bottom line — outside footer-inner so it spans full width minus footer margin */
.footer-divider-bottom {
  border: none;
  border-top: 1px solid #FEFEF7;
  margin: 0 64px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: none;
}

/* ── GET IN TOUCH POPUP ── */


.contact-overlay {
  display: flex;
  pointer-events: none;
  opacity: 0;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: opacity 0.2s ease;
}
.contact-overlay.open {
   pointer-events: all;
  opacity: 1;
}
.contact-overlay.open .contact-modal {
  transform: translateY(0);
}
.contact-modal {
  background: #FEFEF7;
  border-radius: 28px;
  padding: 56px;
  width: 100%;
  max-width: 1100px;
  position: relative;
  min-height: 50vh;
  transform: translateY(100vh);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: #2D2D2D;
  border: none;
  border-radius: 10px;
  color: #c9e0f7;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-close:hover { background: #111; }
.contact-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 0.02em;
  color: #2D2D2D;
  text-align: left;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 48px;
}
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
  position: relative;
}
.contact-left {
  background: #2D2D2D;
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.contact-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  letter-spacing: 0.08em;
  color: #FEFEF7;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-services-label {
  color: #FEFEF7;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-field input {
  background: rgba(254, 254, 247, 0.08);
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
  color: #FEFEF7;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  letter-spacing: 0.03em;
  line-height: 1.9;
  outline: none;
}
.contact-field input::placeholder {
  color: rgba(254, 254, 247, 0.4);
}
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-tag {
  background: none;
  border: 1.5px solid #FEFEF7;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  letter-spacing: 0.06em;
  color: #FEFEF7;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
  width: auto;
}
.contact-tag.active {
  background: #c9e0f7;
  color: #2D2D2D;
  border-color: #c9e0f7;
}
.contact-tag:hover:not(.active) { background: #3d3d3d; }

.contact-right {
  background: #c9e0f7;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 320px;
  
}
.contact-right label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  letter-spacing: 0.08em;
  color: #2D2D2D;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-right textarea {
  background: rgba(254, 254, 247, 0.3);
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
  flex: 1;
  color: #2D2D2D;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  letter-spacing: 0.03em;
  line-height: 1.9;
  resize: none;
  outline: none;
  min-height: 300px;
  
}
.contact-send {
  overflow: hidden;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: #2D2D2D;
  border: none;
  border-radius: 12px;
  padding: 14px 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: gap 0.4s ease;
}
.contact-send:hover { background: #111; }

.contact-send-icon {
  width: 30px;
  height: 30px;
  background: #FEFEF7;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}
.contact-send span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  letter-spacing: 0.1em;
  color: #FEFEF7;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
#cursor {
  z-index: 99999 !important;
}
input, textarea {
  cursor: text !important;
}
@media (max-width: 580px) {
  .contact-body { grid-template-columns: 1fr; }
  .contact-right { min-height: 260px; }
}
/* ============================================================
   MAEVE PAGE
   ============================================================ */

body.maeve-page {
  background: #2D2D2D;
}

.maeve-page .hero {
  height: 10vh;
}

.maeve-page .hero-wrapper {
  height: 10vh;
  background: transparent;
}


/* ============================================================
   MAEVE SECTION — white floating panel
   ============================================================ */

.maeve-section {
  background: #FEFEF6;
  border-radius: 32px;
  margin: 0 32px 0;
  padding: 100px 64px 200px;
  position: relative;
  z-index: 2;
}

.maeve-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  justify-content: space-between;
}

.maeve-text {
  flex: 1;
  padding-top: 8px;
}

.maeve-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 10rem);
  letter-spacing: 0.02em;
  color: #2D2D2D;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.maeve-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

.maeve-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: 0.06em;
  color: #2D2D2D;
  line-height: 1.1;
  margin-top: 80px;
  margin-bottom: 180px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.maeve-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.maeve-line {
  border: none;
  border-top: 1.5px solid #2D2D2D;
  margin-bottom: 24px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.maeve-line.revealed {
  transform: scaleX(1);
}

.maeve-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #2D2D2D;
  width: 95%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.maeve-paragraph.revealed {
  opacity: 0.7;
  transform: translateY(0);
}

.maeve-image {
  width: 42%;
  flex-shrink: 0;
  position: relative;
  opacity: 0;
  transform: translateX(-600px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.maeve-image.revealed {
  opacity: 1;
  transform: translateX(0);
}

.maeve-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.maeve-cursor {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 40px;
  height: 50px;
  pointer-events: none;
}

/* ============================================================
   SKILLS SECTION — directly on dark background, no panel
   ============================================================ */

.skills-section {
  background: transparent;
  color: #FEFEF6;
  padding: 200px 0 200px;
  margin: 0 96px;
  position: relative;
  z-index: 2;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
  width: auto;
}

.skills-content {
  padding: 0;
  margin-left: 0;
}

.skills-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 6vw, 10rem);
  letter-spacing: 0.02em;
  color: #FEFEF6;
  text-align: center;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.7s ease;
}

.skills-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

.skills-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2.8rem);
  letter-spacing: 0.06em;
  color: #FEFEF6;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.6s ease;
}

.skills-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.skills-line {
  border: none;
  border-left: 1.5px solid #FEFEF6;
  width: 1px;
  height: 100px;
  margin: 24px auto;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skills-line.revealed {
  transform: scaleY(1);
}

.skills-list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
}

.skill-entry {
  overflow: hidden;
}

.skill-name {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: 0.06em;
  color: #FEFEF6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.skill-name.revealed {
  opacity: 1;
  transform: translateY(0);
}

.skill-line {
  border: none;
  border-top: 1px solid rgba(254, 254, 246, 0.3);
  margin: 16px 0 32px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skill-line.revealed {
  transform: scaleX(1);
}

.skill-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.skill-entry:hover .skill-logo {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   SERVICES SECTION — white floating panel
   ============================================================ */

.services-section {
  background: #FEFEF6;
  border-radius: 32px;
  margin: 0 32px 32px;
  padding: 80px 64px 100px;
  position: relative;
  z-index: 2;
}

.services-content {
  padding: 0;
  margin-left: 0;
  position: relative;
}

.services-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 6vw, 10rem);
  letter-spacing: 0.02em;
  color: #2D2D2D;
  text-align: center;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.7s ease;
}

.services-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

.services-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2.8rem);
  letter-spacing: 0.06em;
  color: #2D2D2D;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.6s ease;
}

.services-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.services-line {
  border: none;
  border-left: 1.5px solid #2D2D2D;
  width: 1px;
  height: 100px;
  margin: 24px auto;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-line.revealed {
  transform: scaleY(1);
}

.services-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
  margin-top: 200px;
}

.services-tab {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #2D2D2D;
  background: #E8E6E1;
  border: none;
  border-radius: 12px 12px 0 0;
  padding: 14px 28px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.services-tab.active {
  background: #2D2D2D;
  color: #FEFEF6;
  opacity: 1;
}

.services-tab:hover {
  opacity: 0.85;
}

.services-panel {
  display: none;
  background: #2D2D2D;
  color: #FEFEF6;
  padding: 60px 48px;
  border-radius: 0 12px 12px 12px;
  min-height: 500px;
}

.services-panel.active {
  display: flex;
  align-items: center;
}

.services-tabs-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.services-tabs-wrapper.revealed {
  opacity: 1;
  transform: translateY(0);
}

.services-panel h3 {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: 0.06em;
  color: #FEFEF6;
  margin-bottom: 30px;
  margin-top: 0;
  line-height: 1.2;
}

.services-panel p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #FEFEF6;
  opacity: 0.75;
}
.panel-name {
  font-size: clamp(1.6rem, 1.5vw, 3rem) !important;
}

/* ============================================================
   PANEL LAYOUT
   ============================================================ */

   a.panel-name {
  text-decoration: none;
  color: #FEFEF6;
}
.panel-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.panel-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-list {
  display: flex;
  flex-direction: column;
}

.panel-entry {
  overflow: hidden;
}

.panel-name {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  letter-spacing: 0.06em;
  color: #FEFEF6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.1 !important;
  transition: opacity 0.3s ease;
}
.panel-entry:hover .panel-name {
  opacity: 1 !important;
}

.panel-line {
  border: none;
  border-top: 1px solid rgba(254, 254, 246, 0.3);
  margin: 12px 0 24px;
  opacity: 0.2
}

.cursor-video {
  position: fixed;
  width: 200px;
  height: 350px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(20px, -50%);
  border-radius: 8px;
  overflow: hidden;
}

.cursor-video.visible {
  opacity: 1;
}

.cursor-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ============================================================
   contact me section
   ============================================================ */
.contactme-section {
  background: transparent;
  color: #FEFEF6;
  padding: 100px 0;
  margin: 0 96px;
  position: relative;
  z-index: 2;
}

.contactme-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 120px;
  margin-left: -96px;
  margin-right: -96px;
}

.contactme-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: marquee 40s linear infinite;
}

.contactme-marquee-track span {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 6vw, 10rem);
  letter-spacing: 0.02em;
  color: #FEFEF6;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.contactme-arrow {
  opacity: .7;
  font-size: 0.8em;
}
.contactme-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2.8rem);
  letter-spacing: 0.06em;
  color: #FEFEF6;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.6s ease;
}

.contactme-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.contactme-line {
  border: none;
  border-left: 1.5px solid #FEFEF6;
  width: 1px;
  height: 100px;
  margin: 24px auto;
  margin-bottom: 100px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contactme-line.revealed {
  transform: scaleY(1);
}

.contactme-list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
}

.contactme-entry {
  
  position: relative;
  cursor: pointer;
}

.contactme-entry-line {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(254, 254, 246, 0.3);
  margin: 16px 0 32px;
  overflow: hidden;
}

.contactme-entry-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #FEFEF6, rgba(254, 254, 246, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contactme-entry:hover .contactme-entry-line::after {
  transform: scaleX(1);
}
.contactme-name {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.5vw, 2rem);
  letter-spacing: 0.06em;
  color: #FEFEF6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
a.contactme-name {
  text-decoration: none;
  color: #FEFEF6;
  cursor: pointer;
}

.contactme-name.revealed {
  opacity: 1;
  transform: translateY(0);
}

.contactme-name {
  position: relative;
  overflow: hidden;
  height: 1.3em;
}

.contactme-name-front,
.contactme-name-back {
  display: block;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.contactme-name-front {
  transform: translateY(0);
}

.contactme-name-back {
  transform: translateY(100%);
}

.contactme-entry:hover .contactme-name-front {
  transform: translateY(-100%);
}

.contactme-entry:hover .contactme-name-back {
  transform: translateY(0%);
}
.contactme-star {
  vertical-align: middle; 
  font-size: clamp(4rem, 6vw, 10rem);
  font-weight: 900;
}

/* ============================================================
   PACKAGING PAGE
   ============================================================ */
.packaging-page .hero {
  height: 10vh;
}

.packaging-page .hero-wrapper {
  height: 10vh;
  background: transparent;
}

.packaging-section {
  background: #FEFEF6;
  border-radius: 32px;
  margin: 0 32px 0;
  padding: 100px 64px 200px;
  position: relative;
  z-index: 2;
}

.packaging-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  justify-content: space-between;
}

.packaging-text {
  flex: 1;
  padding-top: 8px;
}

.packaging-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 10rem);
  letter-spacing: 0.02em;
  color: #2D2D2D;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.packaging-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

.packaging-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: 0.06em;
  color: #2D2D2D;
  line-height: 1.1;
  margin-top: 300px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.packaging-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.packaging-line {
  border: none;
  border-top: 1.5px solid #2D2D2D;
  margin-bottom: 24px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.packaging-line.revealed {
  transform: scaleX(1);
}

.packaging-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #2D2D2D;
  width: 95%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.packaging-paragraph.revealed {
  opacity: 0.7;
  transform: translateY(0);
}

.packaging-image {
  width: 42%;
  flex-shrink: 0;
  position: relative;
  margin-top: 300px;
  opacity: 0;
  transform: translateX(600px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.packaging-image.revealed {
  opacity: 1;
  transform: translateX(0);
}

.packaging-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
/* ============================================================
   SECTION 2 — DARK BACKGROUND
   ============================================================ */

.packaging-dark-section {
  background: transparent;
  padding: 140px 96px;
  position: relative;
  z-index: 2;
}

.packaging-dark-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-between;
}

.packaging-dark-image {
  width: 42%;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-600px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.packaging-dark-image.revealed {
  opacity: 1;
  transform: translateX(0);
}

.packaging-dark-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.5));
}

.packaging-dark-text {
  flex: 1;
  padding-top: 8px;
}

.packaging-dark-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: 0.06em;
  color: #fefef7;
  line-height: 1.1;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.packaging-dark-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.packaging-dark-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #FEFEF7;
  width: 95%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.packaging-dark-paragraph.revealed {
  opacity: 0.7;
  transform: translateY(0);
}

/* ============================================================
   SECTION 3 — WHITE PANEL WITH 3D MODEL
   ============================================================ */

   .packaging-model-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.packaging-model-text {
  flex: 1;
  max-width: 400px;
} 

.packaging-model-section {
  background: #FEFEF7;
  border-radius: 32px;
  margin: 0 32px 0;
  padding: 100px 64px 200px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.packaging-model-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: 0.06em;
  color: #2D2D2D;
  line-height: 1.1;
  margin-top: 0px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.packaging-model-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.packaging-model-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #2D2D2D;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.packaging-model-paragraph.revealed {
  opacity: 0.7;
  transform: translateY(0);
}

.packaging-model-container {
  width: 60%;
  flex-shrink: 0;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(200px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: visible;
  margin-right: -64px;
}

.packaging-model-container.revealed {
  opacity: 1;
  transform: translateX(0);
}

#packaging-model-canvas {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.model-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #2D2D2D;
  background: #FEFEF6;
  border-radius: 50px;
  padding: 12px 16px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 10;
  animation: rotate-hint 2s ease-in-out infinite;
}

@keyframes rotate-hint {
  0%, 100% { transform: translateX(-50%) rotate(-15deg); }
  50% { transform: translateX(-50%) rotate(15deg); }
}

.stickers-grid {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0;
  row-gap: 60px;
  width: 100%;
  margin-top: 250px;
  align-items: center;
}

.sticker {
  width: 100%;
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.sticker:hover {
  transform: scale(1.15);
  z-index: 10;
  position: relative;
}

.sticker-wrapper.sticker-last {
  grid-column: span 3;
}
.sticker-wrapper.sticker-last .sticker {
  max-width: 200px;
}
.sticker-divider {
  width: 1px;
  height: 60px;
  background-color: #2D2D2D;
  margin: 0 auto;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-self: center;
}
.sticker-divider.revealed {
  transform: scaleY(1);
}
.sticker-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.sticker-wrapper.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stickers-grid:not(.hover-ready) .sticker {
  pointer-events: none;
}

.sticker-star {
  font-size:  1.5rem;
  color: #2D2D2D;
  opacity: 1;
}

.sticker-legend {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 150px;
  align-items: center;
  justify-content: center;
}

.legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.legend-star {
  font-size: 2rem;
}

.legend-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #2D2D2D; 
  opacity: 0.6;
}

/* ============================================================
   BRANDING PAGE
   ============================================================ */
/* ============================================================
   BRANDING PAGE
   ============================================================ */

.branding-title sup {
  font-size: 0.4em;
  letter-spacing: 0.05em;
  vertical-align: super;
  opacity: 0.7;
}

.branding-page .hero-wrapper {
  height: 30vh;
}

.branding-page .hero {
  height: 30vh;
}

.branding-section {
  background: #FEFEF6;
  border-radius: 32px;
  margin: 0 32px 0;
  padding: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.branding-inner {
  display: flex;
  flex-direction: column;
  position: relative;
}

.branding-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 6vw, 10rem);
  letter-spacing: 0.02em;
  color: #FEFEF6;
  text-align: left;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.7s ease;
}

.branding-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

.brand-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 2vw, 10rem);
  letter-spacing: 0.05em;
  color: #2D2D2D;
  opacity: 0.7;
  z-index: 10;
}

.brand-index-light {
  color: #FEFEF6;
}/* ============================================================
   NORI BLOCK
   ============================================================ */

.nori-block {
  margin-bottom: 2rem;
}

.nori-block-top {
  padding: 40px 64px 0;
  min-height: 600px;
}

.nori-reveal-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0 4rem;
}

.nori-logo-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nori-logomark {
  position: relative;
  z-index: 2;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1),
              opacity 0.5s ease 0.4s;
}

.nori-logomark.animate {
  transform: translateX(-100px);
  opacity: 0;
}

.norilogomark-img {
  width: 80px;
  height: auto;
  display: block;
}

.nori-title-reveal {
  overflow: hidden;
  position: relative;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.9s cubic-bezier(0.76, 0, 0.24, 1),
              opacity 0.6s ease 0.3s;
}

.nori-title-reveal.animate {
  max-width: 600px;
  opacity: 1;
  transform: translateX(-40px);
}

.norititle-img {
  display: block;
  height: 80px;
  width: auto;
}

.norititle-img.alt {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease 0.9s;
}

.norititle-img.default {
  transition: opacity 0.4s ease 0.9s;
}

.nori-title-reveal.swapped .norititle-img.default {
  opacity: 0;
}

.nori-title-reveal.swapped .norititle-img.alt {
  opacity: 1;
}

.nori-paragraph-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 1rem 1rem 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.nori-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #2D2D2D;
  width: 90%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.nori-paragraph.visible {
  opacity: 1;
  transform: translateY(0);
}

.nori-pattern-section {
  position: relative;
  background-color: #595959;
  background-image: url('/images/noripattern.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
}

.nori-pattern-logo {
  position: relative;
  z-index: 1;
  width: 250px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.7s ease;
}

.nori-pattern-logo.revealed {
  opacity: 1;
  transform: translateY(0);
}

.nori-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7rem 0 6rem;
}

.nori-section-img {
  width: 100%;
  max-width: 130px;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.nori-section-img.revealed {
  opacity: 1;
  transform: translateY(0);
}

.nori-bottom-split {
  width: 100%;
  height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.nori-menu-section {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nori-menu-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0;
}

.nori-menu-img {
  height: 55vh;
  width: auto;
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.9s ease;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.4));
}

.nori-menu-img.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.4));
}

.nori-menu-logo {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.nori-menu-logo.revealed {
  opacity: 1;
}

.nori-cocktail-panel {
  width: 100%;
  height: 80vh;
  background-color: #FBFEF7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nori-cocktail-img {
  width: 70%;
  max-width: 500px;
  height: 80%;
  object-fit: cover;
  display: block;
}
.nori-cocktail-wrapper {
  position: relative;
  width: 70%;
  max-width: 500px;
  height: 80%;
}

.nori-cocktail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nori-card-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: auto;
   opacity: 0;
  transform: translate(-50%, -50%) translateY(30px);
  transition: opacity 0.6s ease, transform 0.7s ease;
}

.nori-card-img.revealed {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.nori-mockup-section {
  width: 100%;
}

.nori-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   MSTUDIO BLOCK
   ============================================================ */

.mstudio-block {
  margin-top: 2rem;
}

.mstudio-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 80vh;
  position: relative;
}

@font-face {
  font-family: 'TAN-pearl';
  src: url('/fonts/tan-pearl.otf') format('opentype');
  font-weight: normal;
}

.mstudio-cover-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.mstudio-cover-text.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.mstudio-cover-title {
  font-family: 'TAN-pearl', serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.6rem);
  color: #fef8f1;
  text-align: center;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: lowercase;
}

.mstudio-cover-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 1.5vw, 2rem);
  color: #fef8f1;
  text-align: center;
  letter-spacing: 0em;
  text-transform: lowercase;
  margin: 0;
}

.mstudio-cover .mstudio-reveal-wrapper {
  position: relative;
  z-index: 2;
}

.mstudio-reveal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  gap: 2rem;
  padding: 4rem 0;
}

.mstudio-top {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}

.mstudio-top.animate {
  max-height: 400px;
  opacity: 1;
}

.mstudio-bottom {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}

.mstudio-bottom.animate {
  max-height: 200px;
  opacity: 1;
}

.mstudio-img-top {
  display: block;
  width: 200px;
  height: auto;
  padding-bottom: 2rem;
}

.mstudio-img-bottom {
  display: block;
  width: 300px;
  height: auto;
}

.mstudio-cream-inner {
  background: #fef8f1;
  width: 100%;
  padding: 40px 64px 60px;
  box-sizing: border-box;
}

.mstudio-pattern-inner {
  background-image: url('/images/patternmaison.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fef8f1;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mstudio-pattern-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(20px);
}

.mstudio-pattern-title {
  font-family: 'TAN-pearl', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #2c2a22;
  text-align: center;
  letter-spacing: 0em;
  margin: 0;
  margin-bottom: -0.5rem;
}

.mstudio-pattern-subtitle {
 font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 1.5vw, 2rem);
  color: #2c2a22;
  text-align: center;
  letter-spacing: 0em;
  text-transform: lowercase;
  margin: 0;
}
.mstudio-split {
  background-color: #7f806f;
  width: 100%;
  height: 60vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.mstudio-split-left {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mstudio-split-img-left {
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mstudio-split-right {
  width: 100%;
  height: 60vh; /* match your section height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.mstudio-split-img-right {
  width: 70%;
  max-width: 500px;
  height: 80%;
  object-fit: cover;
  object-position: center top; /* adjust to center/bottom depending on what part of the image you want to show */
  display: block;
}

.mstudio-split-bunny {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  pointer-events: none; /* prevents it from interfering with anything */
}

.mstudio-bunny-img {
  width: 300px;
  height: auto;
  display: block;
}
.mstudio-card-section {
  background-color: #2c2a22;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mstudio-card-img {
  width: 50%;
  max-width: 500px;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(20px);
}
.mstudio-final-split {
  width: 100%;
  min-height: 50vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mstudio-final-left,
.mstudio-final-right {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mstudio-final-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   SOCIAL MEDIA PAGE
   ============================================================ */

.social-media-page .hero-wrapper {
  height: 50vh;
  min-height: auto;
  position: relative;
}

.social-media-page .hero {
  display: flex;
  flex-direction: column;
  height: 50vh;
  position: relative;
  top: auto;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0 96px 6rem; /* 6rem = space between subtitle and section below */
}

.social-media-page .branding-title {
  text-align: left;
  width: 100%;
  margin-bottom: 0;
}

.sm-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #FEFEF6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sm-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
}

.sm-section {
  background: #FEFEF6;
  border-radius: 32px;
  margin: 2rem 32px 0;
  padding: 100px 64px;
  min-height: 400px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   RENO SECTION
   ============================================================ */

.reno-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-left: 64px;
  margin: 4rem 32px 0; /* same */
}

.reno-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
}

.reno-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: 0.02em;
  color: #072E29;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reno-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reno-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #072E29;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reno-paragraph.revealed {
  opacity: 0.7;
  transform: translateY(0);
}


/* ── SCROLLABLE GALLERY ── */
.reno-gallery {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  margin-right: -64px; /* still overflows to the right */
  scrollbar-width: none;
}

.reno-gallery::-webkit-scrollbar {
  display: none;
}

.reno-img {
  flex-shrink: 0;
  height: auto;
  width: calc(25vw);
  border-radius: 24px;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reno-img.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reno-gallery-wrapper {
  position: relative;
}

.reno-scroll-hint {
  position: absolute;
  bottom: 50%;
  right: 2rem;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #072E29;
  background: #FEFEF6;
  border-radius: 50px;
  padding: 12px 16px;
  opacity: 0.8;
  animation: nudge 1.5s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.reno-gallery {
  overflow-x: auto;
  overflow-y: hidden; /* prevents vertical scroll on the gallery */
}

/* ============================================================
   INDIA SECTION
   ============================================================ */

.india-section {
  background: #2D2D2D; /* same as page background — no white panel */
  border-radius: 32px;
  margin: 4rem 32px 0;
  padding: 100px 64px;
  min-height: 400px;
  position: relative;
  z-index: 2;
}

.india-reno-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-left: 64px;
}

.india-reno-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  text-align: left;
  margin-left: 0; /* pushes text block to the right */
  padding-right: 0;
}

.india-reno-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: 0.02em;
  color: #FF8A72; /* light text on dark background */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: 0.3s;
}

.india-reno-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.india-reno-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #FF8A72;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.5s;
}

.india-reno-paragraph.revealed {
  opacity: 0.7;
  transform: translateY(0);
}

.india-reno-gallery {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  margin-right: -64px;
  padding-right: 64px;
  scrollbar-width: none;
}

.india-reno-gallery::-webkit-scrollbar {
  display: none;
}

.india-reno-img {
  flex-shrink: 0;
  height: auto;
  width: calc(25vw);
  border-radius: 24px;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  direction: ltr; /* reset direction so images aren't mirrored */
}

.india-reno-img.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* ============================================================
   SANDHU SECTION
   ============================================================ */

.sandhu-section-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-left: 64px;
  margin: 4rem 32px 0; /* same */
}

.sandhu-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
}

.sandhu-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: 0.02em;
  color: #F44120; /* change this */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: 0.3s;
}

.sandhu-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sandhu-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #F44120; /* change this */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.5s;
}

.sandhu-paragraph.revealed {
  opacity: 0.7;
  transform: translateY(0);
}

.sandhu-gallery {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  margin-right: -64px;
  padding-right: 64px;
  scrollbar-width: none;
}

.sandhu-gallery::-webkit-scrollbar {
  display: none;
}

.sandhu-img {
  flex-shrink: 0;
  height: auto;
  width: calc(25vw);
  border-radius: 24px;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sandhu-img.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sandhu-scroll-hint {
  position: absolute;
  bottom: 50%;
  right: 2rem;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #2D2D2D;
  background: #FEFEF6;
  border-radius: 50px;
  padding: 12px 16px;
  opacity: 0.8;
  animation: nudge 1.5s ease-in-out infinite;
}

/* ============================================================
   SOCIAL MEDIA — CONTACT CTA
   ============================================================ */

.sm-contactme-section {
  background: transparent;
  color: #FEFEF6;
  padding: 100px 0;
  margin: 4rem 96px 0;
  position: relative;
  z-index: 2;
}

.sm-contactme-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 120px;
  margin-left: -96px;
  margin-right: -96px;
}

.sm-contactme-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: marquee 40s linear infinite;
}

.sm-contactme-marquee-track span {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 6vw, 10rem);
  letter-spacing: 0.02em;
  color: #FEFEF6;
}

.sm-contactme-star {
  vertical-align: middle;
  font-size: clamp(4rem, 6vw, 10rem);
  font-weight: 900;
}

.sm-contactme-subtitle {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2.8rem);
  letter-spacing: 0.06em;
  color: #FEFEF6;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.6s ease;
}

.sm-contactme-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sm-contactme-line {
  border: none;
  border-left: 1.5px solid #FEFEF6;
  width: 1px;
  height: 100px;
  margin: 24px auto;
  margin-bottom: 100px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sm-contactme-line.revealed {
  transform: scaleY(1);
}

.sm-contactme-list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
}

.sm-contactme-entry {
  position: relative;
  cursor: pointer;
}

.sm-contactme-entry-line {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(254, 254, 246, 0.3);
  margin: 16px 0 32px;
  overflow: hidden;
}

.sm-contactme-entry-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #FEFEF6, rgba(254, 254, 246, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sm-contactme-entry:hover .sm-contactme-entry-line::after {
  transform: scaleX(1);
}

.sm-contactme-name {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.5vw, 2rem);
  letter-spacing: 0.06em;
  color: #FEFEF6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: relative;
  overflow: hidden;
  height: 1.3em;
  text-decoration: none;
  cursor: pointer;
}

.sm-contactme-name.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sm-contactme-name-front,
.sm-contactme-name-back {
  display: block;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.sm-contactme-name-front {
  transform: translateY(0);
}

.sm-contactme-name-back {
  transform: translateY(100%);
}

.sm-contactme-entry:hover .sm-contactme-name-front {
  transform: translateY(-100%);
}

.sm-contactme-entry:hover .sm-contactme-name-back {
  transform: translateY(0%);
}

.sm-contactme-arrow {
  opacity: 0.7;
  font-size: 0.8em;
}