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

  :root {
    --burgundy: #6B0F1A;
    --burgundy-dark: #4A0A12;
    --burgundy-deep: #2E0709;
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-pale: #F5EDD5;
    --cream: #FAF6EE;
    --text-dark: #1A0508;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(46, 7, 9, 0.96);
    backdrop-filter: blur(8px);
  }
  .nav-logo img {
    height: 48px;
    width: auto;
    display: block;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(226, 201, 126, 0.75);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta {
    color: var(--gold-light) !important;
    border: 1px solid rgba(201, 168, 76, 0.45);
    padding: 10px 20px;
    transition: all 0.2s !important;
  }
  .nav-cta:hover {
    background: rgba(201, 168, 76, 0.12) !important;
    border-color: var(--gold-light) !important;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: var(--burgundy-dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(107,15,26,0.55) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
      radial-gradient(ellipse 30% 50% at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
  }
  .hero-logo-wrap {
    margin-bottom: 36px;
    animation: fadeUp 1s ease 0.1s both;
  }
  .hero-logo-wrap img {
    height: clamp(130px, 22vw, 260px);
    width: auto;
    display: block;
    margin: 0 auto;
  }
  .hero-rasa-meaning {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: 300;
    font-style: italic;
    color: rgba(226, 201, 126, 0.55);
    letter-spacing: 0.04em;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 1s ease 0.35s both;
  }
  .hero-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 36px;
    animation: fadeUp 1s ease 0.45s both;
  }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 300;
    color: var(--gold-pale);
    letter-spacing: 0.06em;
    max-width: 580px;
    margin: 0 auto 12px;
    line-height: 1.5;
    animation: fadeUp 1s ease 0.55s both;
  }
  .hero-sub {
    font-size: 11px;
    font-weight: 300;
    color: rgba(245, 237, 213, 0.45);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 52px;
    animation: fadeUp 1s ease 0.65s both;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.8s both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeUp 1s ease 1.1s both;
  }
  .hero-scroll span {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.35);
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.4), transparent);
    animation: scrollPulse 2s ease infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  /* BUTTONS */
  .btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--burgundy-deep);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
  }
  .btn-ghost:hover { border-color: var(--gold-light); background: rgba(201, 168, 76, 0.1); }

  /* SECTION BASE */
  section { padding: 120px 48px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 400;
    color: var(--burgundy-dark);
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .section-heading em {
    font-style: italic;
    font-weight: 300;
    color: var(--burgundy);
  }

  /* WHAT IS RASA */
  .intro { background: var(--cream); }
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 64px;
  }
  .intro-left {
    padding-top: 88px;
  }
  .intro-left p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: #3A1015;
    margin-bottom: 20px;
  }
  .intro-left p strong { font-weight: 500; color: var(--burgundy-dark); }
  .intro-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
    opacity: 0.5;
  }
  .intro-contrast-label {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    font-style: italic;
    color: var(--burgundy-dark) !important;
    margin-bottom: 12px !important;
  }
  .intro-pillars { display: flex; flex-direction: column; gap: 2px; }
  .pillar {
    padding: 26px 32px;
    border-left: 2px solid var(--gold);
    background: white;
    transition: background 0.2s;
  }
  .pillar:hover { background: var(--gold-pale); }

  .pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--burgundy-dark);
    margin-bottom: 8px;
  }
  .pillar p { font-size: 13px; font-weight: 300; line-height: 1.65; color: #5A2028; }

  /* ABOUT */
  .about { background: var(--cream); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-top: 64px;
  }
  .about-portrait {
    position: relative;
    padding: 270px 20px 20px 0;
  }
  .about-portrait::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 20px);
    height: calc(100% - 290px);
    border: 1px solid var(--gold);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
  }
  .about-portrait-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--burgundy-dark);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .about-portrait-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(46,7,9,0.3);
    pointer-events: none;
  }
  .about-pull-full {
    margin-top: 56px;
    padding: 32px 48px 32px 15%;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    background: var(--gold-pale);
    text-align: left;
  }
  .about-pull-full p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(17px, 1.8vw, 21px);
    font-weight: 400;
    font-style: italic;
    color: var(--burgundy-dark);
    line-height: 1.7;
    max-width: 640px;
    margin: 0;
  }
  .about-body p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: #3A1015;
    margin-bottom: 20px;
  }
  .about-body p strong { font-weight: 500; color: var(--burgundy-dark); }



  /* SERVICES */
  .services {
    background: var(--burgundy-dark);
    position: relative;
    overflow: hidden;
  }
  .services::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .services .section-heading { color: var(--gold-light); }
  .services .section-label { color: rgba(201,168,76,0.5); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 60px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.1);
  }
  .service-card {
    background: var(--burgundy-dark);
    padding: 40px 36px;
    transition: background 0.25s;
  }
  .service-card:hover { background: rgba(74,10,18,0.55); }
  .service-icon {
    width: 32px; height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
    transition: width 0.3s;
  }
  .service-card:hover .service-icon { width: 52px; }
  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 12px;
  }
  .service-card p { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(245, 237, 213, 0.52); }

  /* PROCESS */
  .process { background: var(--cream); }
  .process-steps { margin-top: 72px; position: relative; }
  .process-steps::before {
    display: none;
  }
  .process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 40px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(107,15,26,0.08);
    align-items: start;
  }
  .process-step:last-child { border-bottom: none; }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: rgba(201,168,76,0.2);
    line-height: 1;
    position: relative; z-index: 1;
  }
  .step-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--burgundy-dark);
    margin-bottom: 10px;
  }
  .step-content p { font-size: 14px; font-weight: 300; line-height: 1.75; color: #5A2028; }
  .process-closing {
    margin-top: 48px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--burgundy);
    letter-spacing: 0.02em;
    padding-left: 144px;
  }

  /* WHY RASA */
  .why { background: white; }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 64px;
  }
  .why-card {
    background: var(--cream);
    padding: 40px;
    border-top: 3px solid var(--gold);
  }
  .why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--burgundy-dark);
    margin-bottom: 14px;
  }
  .why-card p { font-size: 13px; font-weight: 300; line-height: 1.75; color: #5A2028; }

  /* FOUNDING BAND */
  .founding {
    background: var(--burgundy);
    padding: 88px 48px;
  }
  .founding-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }
  .founding .section-label { color: rgba(201,168,76,0.5); }
  .founding h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .founding h2 em { font-style: italic; font-weight: 300; }
  .founding p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245,237,213,0.6);
    max-width: 580px;
    margin: 0 auto 36px;
  }

  /* CTA */
  .cta-section {
    background: var(--burgundy-deep);
    text-align: center;
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
  }
  .cta-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 340px;
    width: auto;
    opacity: 0.045;
    pointer-events: none;
    filter: brightness(2) grayscale(0.3);
    user-select: none;
  }
  .cta-section .section-label { color: rgba(201,168,76,0.45); }
  .cta-section .section-heading {
    color: var(--gold-light);
    max-width: 540px;
    margin: 16px auto 24px;
  }
  .cta-section .cta-body {
    font-size: 15px;
    font-weight: 300;
    color: rgba(245, 237, 213, 0.52);
    max-width: 420px;
    margin: 0 auto 48px;
    line-height: 1.8;
  }
  .contact-details {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    flex-wrap: wrap;
  }
  .contact-item { text-align: center; }
  .contact-item span {
    display: block;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.4);
    margin-bottom: 8px;
  }
  .contact-item a {
    font-size: 14px;
    font-weight: 300;
    color: var(--gold-light);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .contact-item a:hover { color: white; }

  /* CONCIERGE BOX */
  .concierge-box {
    margin-top: 56px;
    margin-left: auto;
    margin-right: 8%;
    border: 1px solid rgba(107, 15, 26, 0.15);
    padding: 40px 48px;
    background: transparent;
    max-width: 820px;
  }
  .concierge-box-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--burgundy-dark);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
  }
  .concierge-box-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: #5A2028;
  }

  /* BOTTOM QUOTE */
  .bottom-quote {
    background: var(--burgundy-deep);
    border-top: 1px solid rgba(201,168,76,0.12);
    padding: 48px 48px;
    text-align: center;
  }
  .bottom-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    font-style: italic;
    color: rgba(226, 201, 126, 0.6);
    letter-spacing: 0.04em;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* FOOTER */
  footer {
    background: var(--burgundy-deep);
    border-top: 1px solid rgba(201,168,76,0.07);
    padding: 28px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo img {
    height: 36px;
    width: auto;
    opacity: 0.55;
  }
  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
    color: rgba(245,237,213,0.18);
    letter-spacing: 0.06em;
  }

  /* FADE IN */
  .fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 18px 24px; }
    .nav-links { display: none; }
    section { padding: 80px 24px; }
    .intro-grid, .about-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .process-step { grid-template-columns: 40px 1fr; gap: 20px; }
    footer { flex-direction: column; gap: 14px; text-align: center; }
    .contact-details { gap: 28px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .about-portrait { display: none; }
  }