  :root {
    --blush: #f2d5d5;
    --rose: #e8a0a0;
    --rosegold: #c9957c;
    --cream: #f9f4ef;
    --nude: #ede0d4;
    --petal: #f7eae8;
    --ink: #1a1412;
    --muted: #7a6b65;
    --white: #fffcfa;
    --glass: rgba(249,244,239,0.55);
    --glassBorder: rgba(201,149,124,0.25);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
  }
  h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }

  /* CURSOR */
  .cursor { position: fixed; width: 10px; height: 10px; background: var(--rosegold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s; }
  .cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid var(--rosegold); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: all 0.18s ease; }
  body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 16px; height: 16px; background: var(--rose); }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 3rem;
    transition: background 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(249,244,239,0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glassBorder);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem; font-weight: 300; letter-spacing: 0.35em;
    color: var(--white); text-decoration: none;
    transition: color 0.3s;
  }
  nav.scrolled .nav-logo { color: var(--ink); }
 .nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  align-items: center;
}
 .nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,252,250,0.85);
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
  white-space: nowrap;
}
  nav.scrolled .nav-links a { color: var(--muted); }
  .nav-links a:hover { color: var(--rosegold) !important; }
  .nav-apply {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 0.6rem 1.4rem; border: 1px solid rgba(255,252,250,0.6);
    color: var(--white); background: transparent; cursor: pointer;
    transition: all 0.3s; font-family: 'DM Sans', sans-serif;
  }
  nav.scrolled .nav-apply { border-color: var(--rosegold); color: var(--ink); }
  .nav-apply:hover { background: var(--rosegold); color: var(--white); border-color: var(--rosegold); }

  /* HERO */
  #hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #2a1a16 0%, #4a2c24 35%, #3d2018 65%, #1a1008 100%);
    z-index: 0;
  }
  .hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,149,124,0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 75% 30%, rgba(232,160,160,0.15) 0%, transparent 55%);
  }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
  }
  .hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 0 1.5rem;
    animation: heroFade 1.4s ease forwards;
  }
  @keyframes heroFade { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  .hero-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--rose); margin-bottom: 1.4rem;
    animation: heroFade 1.4s 0.2s ease both;
  }
  .hero-title {
    font-size: clamp(3.2rem, 9vw, 7.5rem); font-weight: 300; line-height: 1.05;
    color: var(--white); letter-spacing: 0.02em; margin-bottom: 1.6rem;
    animation: heroFade 1.4s 0.35s ease both;
  }
  .hero-title em { font-style: italic; color: var(--blush); }
  .hero-sub {
    font-size: clamp(0.85rem, 2vw, 1.1rem); letter-spacing: 0.12em;
    color: rgba(249,244,239,0.65); margin-bottom: 3rem; font-weight: 300;
    animation: heroFade 1.4s 0.5s ease both;
  }
  .hero-btns {
    display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
    animation: heroFade 1.4s 0.65s ease both;
  }
  .btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
    padding: 1rem 2.4rem; background: var(--rosegold); color: var(--white);
    border: none; cursor: pointer; transition: all 0.35s;
    text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: var(--rose); transform: translateY(-2px); }
  .btn-outline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
    padding: 1rem 2.4rem; background: transparent;
    color: var(--white); border: 1px solid rgba(255,252,250,0.45);
    cursor: pointer; transition: all 0.35s; text-decoration: none; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--blush); color: var(--blush); transform: translateY(-2px); }
  .hero-socials {
    position: absolute; right: 2.5rem; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 1.2rem; z-index: 3;
    animation: heroFade 1.4s 0.8s ease both;
  }
  .hero-socials a {
    font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(249,244,239,0.5); text-decoration: none; writing-mode: vertical-rl;
    transition: color 0.3s;
  }
  .hero-socials a:hover { color: var(--rose); }
  .scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 3;
    animation: heroFade 1.4s 1s ease both;
  }
  .scroll-indicator span { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(249,244,239,0.4); }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(249,244,239,0.4), transparent); animation: scrollAnim 1.8s infinite; }
  @keyframes scrollAnim { 0%,100%{ transform: scaleY(1); opacity: 1; } 50%{ transform: scaleY(0.4); opacity: 0.3; } }

  /* SECTIONS GENERAL */
  section { padding: 7rem 3rem; }
  .section-label {
    font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--rosegold); margin-bottom: 1rem;
  }
  .section-title {
    font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; line-height: 1.1;
    color: var(--ink); margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--rosegold); }
  .container { max-width: 1280px; margin: 0 auto; }

  /* MARQUEE STRIP */
  .marquee-strip {
    background: var(--ink); padding: 1rem 0; overflow: hidden;
  }
  .marquee-inner {
    display: flex; gap: 3rem; width: max-content;
    animation: marquee 22s linear infinite;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-inner span {
    font-family: 'Cormorant Garamond', serif; font-size: 0.85rem;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--blush);
    white-space: nowrap;
  }
  .marquee-inner span.dot { color: var(--rosegold); font-size: 0.5rem; }

  /* CREATOR QUESTIONS + BRAND STORY */
#campaigns {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

#campaigns::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201,149,124,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(232,160,160,0.10) 0%, transparent 55%);
  pointer-events: none;
}

#campaigns .container {
  position: relative;
  z-index: 1;
}

.creator-info-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

#campaigns .section-label {
  color: var(--rose);
}

#campaigns .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.creator-intro {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(249,244,239,0.62);
  margin-bottom: 2.5rem;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.faq-item {
  border: 1px solid rgba(201,149,124,0.22);
  background: rgba(249,244,239,0.045);
  padding: 1.6rem;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(201,149,124,0.55);
  background: rgba(249,244,239,0.075);
}

.faq-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 0.7rem;
}

.faq-item p {
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(249,244,239,0.58);
}

.brand-story-panel {
  background: var(--cream);
  padding: 3rem;
  border: 1px solid rgba(201,149,124,0.35);
  position: sticky;
  top: 7rem;
}

.story-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rosegold);
  margin-bottom: 1.2rem;
}

.brand-story-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.brand-story-panel p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 2rem;
}

.story-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.story-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  transition: all 0.35s ease;
}

.story-btn.primary {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}

.story-btn.primary:hover {
  background: var(--rosegold);
  border-color: var(--rosegold);
}

.story-btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.story-btn.outline:hover {
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 1024px) {
  .creator-info-wrap {
    grid-template-columns: 1fr;
  }

  .brand-story-panel {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr;
  }

  .brand-story-panel {
    padding: 2rem;
  }
}
@media (max-width: 1180px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    gap: 0.9rem;
  }

  .nav-links a {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .nav-apply {
    padding: 0.55rem 1rem;
    font-size: 0.65rem;
  }

  .nav-logo {
    font-size: 1.55rem;
    letter-spacing: 0.25em;
  }
}
  /* COLLECTIONS */
  #collections { background: var(--cream); }
  .collections-tabs {
    display: flex; gap: 0; margin-bottom: 3.5rem; border-bottom: 1px solid var(--nude);
  }
  .tab-btn {
    font-family: 'DM Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.25em;
    text-transform: uppercase; padding: 0.9rem 2.2rem; background: none; border: none;
    color: var(--muted); cursor: pointer; transition: all 0.3s;
    border-bottom: 2px solid transparent; margin-bottom: -1px;
  }
  .tab-btn.active { color: var(--ink); border-bottom-color: var(--rosegold); }
  .tab-btn:hover { color: var(--rosegold); }
  .tab-panel { display: none; }
  .tab-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
  .product-card {
    background: var(--white); overflow: hidden; cursor: pointer;
    transition: transform 0.4s, box-shadow 0.4s;
  }
  .product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,20,18,0.1); }
  .product-img {
    aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
  }
  .product-img-inner {
    width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    display: flex; align-items: center; justify-content: center;
  }
  .product-card:hover .product-img-inner { transform: scale(1.05); }
  .product-info { padding: 1.2rem; }
  .product-category { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rosegold); margin-bottom: 0.4rem; }
  .product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
  .product-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
  .product-view { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rosegold); background: none; border: none; cursor: pointer; padding: 0; font-family: 'DM Sans', sans-serif; transition: color 0.3s; }
  .product-view:hover { color: var(--ink); }

  /* color blocks for product placeholders */
  .p-lip { background: linear-gradient(135deg, #e8b4b8 0%, #d47a8a 100%); }
  .p-skin { background: linear-gradient(135deg, #f5ddd0 0%, #e8c4a8 100%); }
  .p-blush { background: linear-gradient(135deg, #f2c4c4 0%, #e49090 100%); }
  .p-brow { background: linear-gradient(135deg, #d4b89a 0%, #b08060 100%); }
  .p-eye { background: linear-gradient(135deg, #c4b4d4 0%, #9070a8 100%); }
  .p-hi { background: linear-gradient(135deg, #f8e8a0 0%, #e8c860 100%); }
  .p-set { background: linear-gradient(135deg, #e8e0d8 0%, #c8b8a8 100%); }
  .p-sk { background: linear-gradient(135deg, #d8ecd8 0%, #a8cca8 100%); }
  .p-dr { background: linear-gradient(135deg, #f4d0d8 0%, #e0a0b0 100%); }
  .p-sw { background: linear-gradient(135deg, #d0d8f4 0%, #a0b0e8 100%); }
  .p-coq { background: linear-gradient(135deg, #f4d4e8 0%, #e0a8cc 100%); }
  .p-min { background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 100%); }
  .p-cas { background: linear-gradient(135deg, #f0e8d8 0%, #d8c0a0 100%); }
  .p-ko { background: linear-gradient(135deg, #d8e8f0 0%, #a0c0d8 100%); }
  .p-lo { background: linear-gradient(135deg, #f0d8e8 0%, #d8a8c8 100%); }
  .p-ca { background: linear-gradient(135deg, #e8d8d0 0%, #c8a898 100%); }
  .prod-icon { font-size: 3rem; opacity: 0.5; }

  /* EDITORIAL BREAK */
  .editorial-break {
    position: relative; height: 500px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .editorial-bg {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, #3d1f1a 0%, #6b3030 40%, #c4807a 80%, #e8b4b0 100%);
  }
  .editorial-bg::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(242,213,213,0.15) 0%, transparent 60%);
  }
  .editorial-text { position: relative; z-index: 2; text-align: center; padding: 2rem; }
  .editorial-quote {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 5vw, 3.8rem);
    font-style: italic; font-weight: 300; color: var(--white); line-height: 1.3;
    max-width: 800px; margin: 0 auto 2rem;
  }

  /* RECRUITMENT */
  #recruit {
    background: var(--petal); position: relative; overflow: hidden;
  }
  .recruit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .recruit-visuals { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; height: 550px; }
  .recruit-card {
    overflow: hidden; position: relative;
    transition: transform 0.5s;
  }
  .recruit-card:hover { transform: scale(1.02); }
  .recruit-card:first-child { grid-row: span 2; }
  .recruit-fill { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
  .rc1 { background: linear-gradient(135deg, #4a2828 0%, #a05050 50%, #e8a0a0 100%); }
  .rc2 { background: linear-gradient(135deg, #2a1a2e 0%, #6a4a7a 50%, #c890c8 100%); }
  .rc3 { background: linear-gradient(135deg, #1e2a2a 0%, #3a6060 50%, #80b0b0 100%); }
  .recruit-content { padding: 2rem 0; }
  .recruit-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
  .badge { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.4rem 1rem; border: 1px solid var(--rosegold); color: var(--rosegold); background: transparent; }
  .recruit-text { font-size: 1.05rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem; }

  /* GALLERY */
  #gallery { background: var(--white); }
  .masonry-grid {
    columns: 4; column-gap: 1rem; margin-top: 3rem;
  }
  @media (max-width: 1024px) { .masonry-grid { columns: 3; } }
  @media (max-width: 768px) { .masonry-grid { columns: 2; } }
  .masonry-item {
    break-inside: avoid; margin-bottom: 1rem; overflow: hidden; cursor: pointer;
    position: relative;
  }
  .masonry-item img { width: 100%; display: block; transition: transform 0.5s; }
  .masonry-item:hover img { transform: scale(1.04); }
  .masonry-overlay {
    position: absolute; inset: 0; background: rgba(26,20,18,0); transition: background 0.3s;
    display: flex; align-items: center; justify-content: center;
  }
  .masonry-item:hover .masonry-overlay { background: rgba(26,20,18,0.3); }
  .masonry-label {
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--white); opacity: 0; transition: opacity 0.3s;
  }
  .masonry-item:hover .masonry-label { opacity: 1; }
  .gal-block {
    width: 100%; display: flex; align-items: center; justify-content: center;
  }
  .ga { background: linear-gradient(135deg, #e8b4b8 0%, #d47080 100%); }
  .gb { background: linear-gradient(135deg, #f5ddd0 0%, #e0a080 100%); }
  .gc { background: linear-gradient(135deg, #c4b4d4 0%, #8060a0 100%); }
  .gd { background: linear-gradient(135deg, #b8d8e0 0%, #70a8c0 100%); }
  .ge { background: linear-gradient(135deg, #d8e8b8 0%, #90b860 100%); }
  .gf { background: linear-gradient(135deg, #f8d8d0 0%, #e0a898 100%); }
  .gg { background: linear-gradient(135deg, #d0d0e8 0%, #8888c0 100%); }
  .gh { background: linear-gradient(135deg, #e8d8b8 0%, #c0a060 100%); }
  .gi { background: linear-gradient(135deg, #f0e4e8 0%, #d8a0c0 100%); }
  .gj { background: linear-gradient(135deg, #e0e8f0 0%, #90a8c8 100%); }
  .gk { background: linear-gradient(135deg, #f4d8e0 0%, #e090b0 100%); }
  .gl { background: linear-gradient(135deg, #d8f0e8 0%, #70b890 100%); }

  /* ABOUT */
  #about {
    background: var(--ink);
    position: relative; overflow: hidden;
  }
  #about::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(201,149,124,0.12) 0%, transparent 55%);
  }
  .about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: center; position: relative; z-index: 1; }
  .about-word {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 300; color: rgba(249,244,239,0.06); line-height: 1;
    letter-spacing: 0.05em;
  }
  .about-content .section-label { color: var(--rose); }
  .about-content .section-title { color: var(--white); }
  .about-body { font-size: 1rem; color: rgba(249,244,239,0.6); line-height: 1.9; margin-bottom: 2.5rem; }
  .about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .pillar {
    padding: 1.4rem; border: 1px solid rgba(201,149,124,0.2);
    transition: border-color 0.3s;
  }
  .pillar:hover { border-color: rgba(201,149,124,0.5); }
  .pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--blush); margin-bottom: 0.5rem; }
  .pillar-text { font-size: 0.83rem; color: rgba(249,244,239,0.5); line-height: 1.6; }

  /* APPLICATION */
  #apply { background: var(--cream); }
  .apply-wrapper { max-width: 780px; margin: 0 auto; }
  .apply-form { margin-top: 3rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-group.full { grid-column: span 2; }
  label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
  input, select, textarea {
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--ink);
    background: var(--white); border: 1px solid var(--nude);
    padding: 0.85rem 1rem; outline: none; transition: border-color 0.3s;
    appearance: none; width: 100%;
  }
  input:focus, select:focus, textarea:focus { border-color: var(--rosegold); }
  textarea { resize: vertical; min-height: 110px; }
  select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6b65' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
  .drop-zone {
    border: 2px dashed var(--nude); padding: 2.5rem; text-align: center;
    cursor: pointer; transition: all 0.3s; background: var(--white);
    margin-bottom: 1.2rem;
  }
  .drop-zone:hover, .drop-zone.drag-over { border-color: var(--rosegold); background: var(--petal); }
  .drop-zone-icon { font-size: 2rem; margin-bottom: 0.8rem; opacity: 0.4; }
  .drop-zone p { font-size: 0.85rem; color: var(--muted); }
  .drop-zone span { color: var(--rosegold); }
  .preview-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1rem; }
  .preview-thumb { width: 70px; height: 70px; object-fit: cover; border: 1px solid var(--nude); }
  .progress-bar-wrap { height: 3px; background: var(--nude); margin-top: 0.5rem; display: none; }
  .progress-bar { height: 100%; background: var(--rosegold); width: 0; transition: width 0.4s; }
  .check-group { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.8rem; }
  .check-item { display: flex; align-items: flex-start; gap: 0.7rem; cursor: pointer; }
  .check-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--rosegold); margin-top: 2px; flex-shrink: 0; }
  .check-item span { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }
  .form-submit { width: 100%; padding: 1.1rem; background: var(--ink); color: var(--white); border: none; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer; transition: all 0.35s; margin-top: 0.5rem; }
  .form-submit:hover { background: var(--rosegold); }
  .form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

  /* SUCCESS MODAL */
  .modal-overlay {
    position: fixed; inset: 0; background: rgba(26,20,18,0.7);
    backdrop-filter: blur(6px); z-index: 9000;
    display: none; align-items: center; justify-content: center; padding: 2rem;
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: var(--white); max-width: 500px; width: 100%; padding: 3rem;
    text-align: center; position: relative;
    animation: modalIn 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }
  @keyframes modalIn { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }
  .modal-close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--muted); }
  .modal-icon { font-size: 2.5rem; margin-bottom: 1rem; }
  .modal-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; margin-bottom: 0.8rem; color: var(--ink); }
  .modal-box p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
  .ref-box { background: var(--cream); border: 1px solid var(--nude); padding: 1rem 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; letter-spacing: 0.2em; color: var(--rosegold); margin-bottom: 1.5rem; }
  .modal-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-copy { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.8rem 1.6rem; background: var(--ink); color: var(--white); border: none; cursor: pointer; transition: background 0.3s; }
  .btn-copy:hover { background: var(--rosegold); }
  .btn-tg { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.8rem 1.6rem; background: transparent; color: var(--ink); border: 1px solid var(--ink); cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
  .btn-tg:hover { background: #229ED9; color: var(--white); border-color: #229ED9; }

  /* PRODUCT MODAL */
  .product-modal-overlay {
    position: fixed; inset: 0; background: rgba(26,20,18,0.75);
    backdrop-filter: blur(8px); z-index: 8000;
    display: none; align-items: center; justify-content: center; padding: 2rem;
  }
  .product-modal-overlay.open { display: flex; }
  .product-modal {
    background: var(--white); max-width: 900px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; max-height: 90vh; overflow-y: auto;
    animation: modalIn 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
    position: relative;
  }
  .pm-gallery { position: relative; min-height: 400px; overflow: hidden; }
  .pm-main { width: 100%; height: 100%; min-height: 400px; object-fit: cover; display: flex; align-items: center; justify-content: center; }
  .pm-close { position: absolute; top: 1rem; right: 1rem; z-index: 2; background: rgba(26,20,18,0.5); border: none; color: white; width: 36px; height: 36px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
  .pm-info { padding: 2.5rem; display: flex; flex-direction: column; }
  .pm-badge { display: inline-block; font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; background: var(--blush); color: var(--rosegold); padding: 0.3rem 0.8rem; margin-bottom: 1rem; }
  .pm-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--ink); margin-bottom: 0.5rem; }
  .pm-category { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rosegold); margin-bottom: 1.2rem; }
  .pm-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
  .pm-details { border-top: 1px solid var(--nude); padding-top: 1.2rem; margin-bottom: 1.5rem; }
  .pm-detail { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--nude); font-size: 0.82rem; }
  .pm-detail span:first-child { color: var(--muted); }
  .pm-detail span:last-child { color: var(--ink); font-weight: 500; }
  .pm-cta { margin-top: auto; }
  .pm-cta p { font-size: 0.8rem; color: var(--muted); margin-top: 0.8rem; }

  /* FOOTER */
  footer {
    background: var(--ink); padding: 4rem 3rem 2rem;
    border-top: 1px solid rgba(201,149,124,0.15);
  }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
  .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; letter-spacing: 0.3em; color: var(--white); margin-bottom: 1rem; }
  .footer-tagline { font-size: 0.83rem; color: rgba(249,244,239,0.45); line-height: 1.8; max-width: 260px; }
  .footer-col h5 { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col ul a { font-size: 0.83rem; color: rgba(249,244,239,0.5); text-decoration: none; transition: color 0.3s; }
  .footer-col ul a:hover { color: var(--blush); }
  .footer-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
  .footer-social { width: 38px; height: 38px; border: 1px solid rgba(249,244,239,0.2); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(249,244,239,0.5); font-size: 0.65rem; letter-spacing: 0.05em; transition: all 0.3s; }
  .footer-social:hover { border-color: var(--rose); color: var(--rose); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(249,244,239,0.08); padding-top: 1.5rem; }
  .footer-copy { font-size: 0.75rem; color: rgba(249,244,239,0.3); letter-spacing: 0.08em; }
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { font-size: 0.75rem; color: rgba(249,244,239,0.3); text-decoration: none; transition: color 0.3s; }
  .footer-legal a:hover { color: var(--rose); }

  /* ANIMATE ON SCROLL */
  .aos { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .aos.visible { opacity: 1; transform: translateY(0); }
  .aos-delay-1 { transition-delay: 0.1s; }
  .aos-delay-2 { transition-delay: 0.2s; }
  .aos-delay-3 { transition-delay: 0.3s; }

  @media (max-width: 1024px) {
    .recruit-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .product-modal { grid-template-columns: 1fr; }
    nav { padding: 1rem 1.5rem; }
    section { padding: 5rem 1.5rem; }
  }
  @media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .recruit-visuals { height: 360px; }
    .footer-top { grid-template-columns: 1fr; }
    .campaigns-grid { grid-template-columns: 1fr 1fr; }
    .hero-socials { display: none; }
    .nav-links { display: none; }
    .about-pillars { grid-template-columns: 1fr; }
  }
  .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#about {
  background: url('../images/dreams.png') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: var(--white); /* keep text visible */
}

/* Optional overlay for better text readability */
#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 18, 0.55); /* dark overlay */
  z-index: 1;
}

#about .container {
  position: relative;
  z-index: 2; /* put content above overlay */
}
.editorial-break {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-bg {
  position: absolute;
  inset: 0;
  background: url('../images/sheisnot.png') no-repeat center center;
  background-size: cover;
  z-index: 0;
}

/* Optional overlay to make text readable */
.editorial-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 18, 0.45); /* adjust opacity for better contrast */
  z-index: 1;
}

.editorial-text {
  position: relative;
  z-index: 2; /* ensure text is above overlay */
  text-align: center;
  padding: 2rem;
  color: #fff; /* ensure visibility */
}
/* FEATURED MODELS SECTION */
#featured-models {
  width: 100%;
  padding: 3rem 0;
  background: #f8f5f3; /* pwede mong palitan */
  overflow: hidden;
}

#featured-models .container {
  max-width: 100%;
  width: 100%;
  padding: 0 2rem;
} 

.models-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c9957c;
  margin-bottom: 1rem;
}

/* GRID NA PUPUNO SA BUONG WIDTH */
.models-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 1.2rem;
  width: 100%;
}
.model-card img {
  height: 360px;
}

.model-info h4 {
  font-size: 1.5rem;
}

/* CARD */
.model-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

/* IMAGE */
.model-card img {
  width: 100%;
  height: 320px; /* lakihan */
  object-fit: cover;
  display: block;
}

/* INFO */
.model-info {
  padding: 0.9rem 1rem;
  text-align: center;
}

.model-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: #1a1412;
  margin-bottom: 0.2rem;
}

.model-info p {
  font-size: 0.85rem;
  color: #7a6b65;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .models-grid {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }
}

@media (max-width: 992px) {
  .models-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  #featured-models .container {
    padding: 0 1rem;
  }

  .models-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 1rem;
  }

  .model-card img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .models-grid {
    grid-template-columns: 1fr;
  }

  .model-card img {
    height: 300px;
  }
}


#recruit-models .model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(26,20,18,0.15);
}

#recruit-models .model-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

#recruit-models .model-info {
  padding: 0.6rem 0.5rem;
}

#recruit-models .model-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: #1a1412;
  margin: 0;
}

#recruit-models .model-town {
  font-size: 0.75rem;
  color: #7a6b65;
  margin: 0;
}
/* FEATURED MODELS */
#featured-models {
  background: var(--cream);
  padding: 6rem 3rem;
}

.models-intro {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 3rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 1.2rem;
}

.model-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(26, 20, 18, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 20, 18, 0.13);
}

.model-card img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
}

.model-info {
  padding: 1.1rem 1rem 1.3rem;
  text-align: center;
}

.model-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.model-info p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* CREATOR BENEFITS AND PROCESS */
#creator-benefits {
  background: var(--petal);
  padding: 7rem 3rem;
}

.benefits-intro {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--nude);
  padding: 2rem;
  min-height: 260px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--rosegold);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
}

.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
}

.benefits-panel {
  background: var(--white);
  border: 1px solid var(--nude);
  padding: 3rem;
}

.benefits-heading {
  margin-bottom: 2rem;
}

.benefits-heading h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.benefit-card {
  border: 1px solid var(--nude);
  padding: 1.5rem;
  background: var(--cream);
  transition: transform 0.35s ease, background 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: var(--petal);
}

.benefit-card span {
  display: block;
  font-size: 1.7rem;
  color: var(--rosegold);
  margin-bottom: 0.8rem;
}

.benefit-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--muted);
}

.benefits-note {
  margin-top: 1.8rem;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--muted);
  font-style: italic;
}

/* RESPONSIVE FOR MODELS AND BENEFITS */
@media (max-width: 1200px) {
  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-card img {
    height: 320px;
  }
}

@media (max-width: 600px) {
  #featured-models,
  #creator-benefits {
    padding: 5rem 1.5rem;
  }

  .models-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-panel {
    padding: 2rem;
  }

  .model-card img {
    height: 360px;
  
  }
}
.campaign-intro {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(249, 244, 239, 0.6);
  margin-top: -0.5rem;
  margin-bottom: 3rem;
}