* {
        box-sizing: border-box;
    }
    
    body {
        margin: 0;
        background: #0b0b0b;
        color: #fff;
        font-family: Roboto,sans-serif;
        font-size: 15px;
        font-weight: 300;
        -webkit-font-smoothing: antialiased;
        font-variant-numeric: lining-nums;
    }

    /* HERO WRAP (so we can scroll past it) */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* Section wrapper */
    .hero-text {
        position: relative;
        width: 100%;
        padding: 140px 20px 120px;
        overflow: hidden;
        text-align: center;
    }

    /* Inner container */
    .hero-inner {
        position: relative;
        max-width: 1100px;
        margin: 0 auto;
        z-index: 1;
    }

    /* Small uppercase line */
    .hero-kicker {
        display: block;
        font-size: 12px;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: #c9b29a;
        margin-bottom: 28px;
    }

    /* Main headline */
    .hero-title {
        margin: 0;
        font-family: "Playfair Display", Georgia, "Times New Roman", serif;
        font-size: 4rem;
        font-weight: 400;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
    }

    /* Subtitle paragraph */
    .hero-subtitle {
        /* margin: 32px auto 0; */
        max-width: 760px;
        font-size: 18px;
        font-weight: 100;
        line-height: 1.8;
        color: white;
    }

    /* Huge faded background word */
    .hero-bg-word {
        position: absolute;
        margin-top: -14px;
        inset: 0;
        align-items: center;
        justify-content: center;
        font-family: "Playfair Display", Georgia, "Times New Roman", serif;
        font-size: 6rem;
        letter-spacing: 0.18em;
        color: rgba(201, 178, 154, 0.2);
        z-index: 0;
        pointer-events: none;
        user-select: none;
    }

    .swiper { width: 100%; height: 100%; }
    .swiper-slide {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

		.swiper-button-next,
		.swiper-button-prev {
			color: rgba(255,255,255,0.4) !important; /* or any color */
		}

    /* Background layer */
    .slide-bg {
      position: absolute;
      inset: 0%;
      background-size: cover;
      background-position: center;
      transform: scale(1.1);
      will-change: transform;
    }

    /* subtle overlay to make text readable */
    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.25));
      z-index: 1;
      pointer-events: none;
    }

    .slide-content {
			position: absolute;
			top: 200px;
			left: 100px;
			z-index: 10;
    }



    /* .slide-content {
      position: relative;
      max-width: 980px;
      width: 100%;
      padding: 2.2rem;
      z-index: 2;
    } */

    .eyebrow {
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.85rem;
      opacity: 0;
    }

    .slide-title {
      font-size: clamp(2rem, 5vw, 4rem);
      margin: 0.7rem 0 1rem;
      line-height: 1.05;
      opacity: 0;
    }

    .slide-text {
      font-size: 1.15rem;
      max-width: 680px;
      margin: 0 0 1.8rem;
      opacity: 0;
      color: rgba(255,255,255,0.88);
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 1.8rem;
      opacity: 0;
    }

    .pill {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.14);
      font-size: 0.95rem;
      backdrop-filter: blur(6px);
    }

    .slide-actions {
      display: flex;
      gap: 12px;
      align-items: center;
      opacity: 0;
    }

    .btn {
      display: inline-block;
      padding: 14px 22px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 650;
      transition: transform .15s ease, opacity .15s ease;
      will-change: transform;
    }
    .btn:hover { transform: translateY(-1px); opacity: .95; }

    .btn-primary {
      background: rgba(230, 186, 148, 0.8);
			/* background: #fff; */
			color: #fff;
		}
    .btn-ghost {
      background: rgba(255,255,255,0.08);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.18);
    }

    .swiper-button-next, .swiper-button-prev { color: #fff; }
    .swiper-button-next::after, .swiper-button-prev::after { font-size: 22px; }

    /* PAGE CONTENT after hero */
    .page {
      max-width: 980px;
      margin: 0 auto;
      padding: 56px 20px 120px;
    }
    .section {
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    h2 { margin: 0 0 12px; font-size: 1.6rem; }
    p { margin: 0 0 12px; color: rgba(255,255,255,0.84); line-height: 1.6; }
    ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,0.84); line-height: 1.7; }